Skip to content

Commit

Permalink
added missing parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
django-wong committed May 13, 2017
1 parent 6ff9b0e commit da8c820
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Plugins/PersistentFop.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ public function getMethod()
return 'persistentFop';
}

public function handle($path = null, $fops = null, $pipline = null, $force = false)
public function handle($path = null, $fops = null, $pipline = null, $force = false, $notify_url = null)
{
return $this->filesystem->getAdapter()->persistentFop($path, $fops, $pipline, $force);
return $this->filesystem->getAdapter()->persistentFop($path, $fops, $pipline, $force, $notify_url);
}
}

0 comments on commit da8c820

Please sign in to comment.