Added task creation menu for all projects views

This commit is contained in:
Frederic Guillot
2016-05-15 20:09:43 -04:00
parent 67b8361649
commit 8a6f02735b
14 changed files with 53 additions and 42 deletions

View File

@@ -25,10 +25,10 @@ abstract class BaseMiddleware extends Base
/**
* Set next middleware
*
* @param BaseMiddleware $nextMiddleware
* @param BaseMiddleware|null $nextMiddleware
* @return BaseMiddleware
*/
public function setNextMiddleware($nextMiddleware)
public function setNextMiddleware(BaseMiddleware $nextMiddleware)
{
$this->nextMiddleware = $nextMiddleware;
return $this;