Compare commits

...

3 Commits

Author SHA1 Message Date
a-sansara
a9bb3e3be5 composer dev 2017-03-30 01:54:11 +02:00
a-sansara
260ffeeb74 add missing routing definition in ctrl/base + php version 7 require 2017-03-30 01:51:26 +02:00
a-sansara
071aa12e13 composer.json dev 2017-03-21 03:47:43 +01:00
2 changed files with 13 additions and 1 deletions

View File

@ -17,7 +17,8 @@
}
},
"require": {
"meta-tech/pws-auth" : "2.1.3",
"php" : "^7.0",
"meta-tech/pws-auth" : "@dev",
"meta-tech/silex-controller-service" : "^1.0",
"silex/silex": "^2.0",
"gecko-packages/gecko-silex-config-service": "^2.0",

View File

@ -51,6 +51,17 @@ abstract class Base implements ControllerProviderInterface
}
/*!
* @method routing
* @public
* @param Silex\ControllerCollection $collection
* @return Silex\ControllerCollection
*/
public function routing(ControllerCollection $collection) : ControllerCollection
{
return $collection;
}
/*!
* @method connect
* @public