Add the possibility to create external tasks

This commit is contained in:
Frederic Guillot
2016-11-05 22:26:58 -04:00
parent ae5d31e4c2
commit 3f7840c4db
19 changed files with 269 additions and 35 deletions

View File

@@ -0,0 +1,26 @@
<?php
namespace Kanboard\Core\ExternalTask;
/**
* Interface ExternalTaskInterface
*
* @package Kanboard\Core\ExternalTask
* @author Frederic Guillot
*/
interface ExternalTaskInterface
{
/**
* Return Uniform Resource Identifier for the task
*
* @return string
*/
public function getUri();
/**
* Return a dict to populate the task form
*
* @return array
*/
public function getFormValues();
}