Skip to content

Commit

Permalink
Merge pull request #31 from django-wong/master
Browse files Browse the repository at this point in the history
added missing parameter
  • Loading branch information
zgldh authored May 14, 2017
2 parents 6ff9b0e + da8c820 commit 9942fe9
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 9942fe9

Please sign in to comment.