diff options
author | Frédéric Guillot <fred@kanboard.net> | 2019-07-30 11:59:51 -0700 |
---|---|---|
committer | Frédéric Guillot <fred@miniflux.net> | 2019-07-30 12:58:36 -0700 |
commit | 216f2dee122424d7432769b2fd7cd9b902536a0c (patch) | |
tree | 739cdfd11e337efb69f8a9c11edda102fc6a60a4 /app/Core | |
parent | db0d680e5c1ef4f48926b979302da99aba03f41f (diff) |
Add project ID to ExternalTaskProviderInterface::fetch()
Diffstat (limited to 'app/Core')
-rw-r--r-- | app/Core/ExternalTask/ExternalTaskProviderInterface.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/app/Core/ExternalTask/ExternalTaskProviderInterface.php b/app/Core/ExternalTask/ExternalTaskProviderInterface.php index 5678efb8..7a8157f4 100644 --- a/app/Core/ExternalTask/ExternalTaskProviderInterface.php +++ b/app/Core/ExternalTask/ExternalTaskProviderInterface.php @@ -40,9 +40,10 @@ interface ExternalTaskProviderInterface * @access public * @throws \Kanboard\Core\ExternalTask\ExternalTaskException * @param string $uri + * @param int $projectID * @return ExternalTaskInterface */ - public function fetch($uri); + public function fetch($uri, $projectID); /** * Save external task to another system |