diff --git a/includes/destination.inc b/includes/destination.inc
index 18c1b0b..2b5f070 100644
--- a/includes/destination.inc
+++ b/includes/destination.inc
@@ -79,6 +79,6 @@ abstract class MigrateDestinationHandler extends MigrateHandler {
    * Any one or more of these methods may be implemented
    */
   //abstract public function fields();
-  //abstract public function prepare(stdClass $entity, stdClass $row);
-  //abstract public function complete(stdClass $entity, stdClass $row);
+  //abstract public function prepare($entity, stdClass $row);
+  //abstract public function complete($entity, stdClass $row);
 }
diff --git a/plugins/destinations/path.inc b/plugins/destinations/path.inc
index e0478bf..3087f50 100644
--- a/plugins/destinations/path.inc
+++ b/plugins/destinations/path.inc
@@ -15,7 +15,7 @@ class MigratePathEntityHandler extends MigrateDestinationHandler {
     return array('path' => t('Node: Path alias'));
   }
 
-  public function prepare(stdClass $entity, stdClass $row) {
+  public function prepare($entity, stdClass $row) {
     if (isset($entity->path)) {
       $path = $entity->path;
       $entity->path = array();
