From da8c8204b8eeff88b887a56369be78dd7fbaae35 Mon Sep 17 00:00:00 2001 From: Django Wong <383126908@qq.com> Date: Sun, 14 May 2017 03:58:51 +0800 Subject: [PATCH] added missing parameter --- src/Plugins/PersistentFop.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Plugins/PersistentFop.php b/src/Plugins/PersistentFop.php index 8bf71104..44eaee95 100644 --- a/src/Plugins/PersistentFop.php +++ b/src/Plugins/PersistentFop.php @@ -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); } } \ No newline at end of file