@@ -28,7 +28,6 @@ |
||
| 28 | 28 | * @param string $path Path to module |
| 29 | 29 | * @param ResourceMap $resources |
| 30 | 30 | * @param Core $system Framework instance |
| 31 | - * @param Url $request Request instance |
|
| 32 | 31 | */ |
| 33 | 32 | public function __construct($path, ResourcesInterface $resources, SystemInterface $system) |
| 34 | 33 | { |
@@ -1,6 +1,5 @@ |
||
| 1 | 1 | <?php |
| 2 | 2 | namespace samson\core; |
| 3 | -use samsonframework\core\RequestInterface; |
|
| 4 | 3 | use samsonframework\core\ResourcesInterface; |
| 5 | 4 | use samsonframework\core\SystemInterface; |
| 6 | 5 | |
@@ -59,8 +59,8 @@ discard block |
||
| 59 | 59 | * Generic method for setting fields to current service from its parents. |
| 60 | 60 | * Method recursively copies all unset fields of $baseObject from defined |
| 61 | 61 | * field values of its parent classes |
| 62 | - * @param mixed $baseObject Object fo set undefined fields from parents |
|
| 63 | - * @param mixed $currentObject Current object for recursion to find parent fields |
|
| 62 | + * @param Service $baseObject Object fo set undefined fields from parents |
|
| 63 | + * @param Service $currentObject Current object for recursion to find parent fields |
|
| 64 | 64 | */ |
| 65 | 65 | protected static function gatherAncestorsData(& $baseObject, & $currentObject) |
| 66 | 66 | { |
@@ -94,6 +94,7 @@ discard block |
||
| 94 | 94 | /** |
| 95 | 95 | * Convert class name to correct service name |
| 96 | 96 | * @var string $class Class name to convert |
| 97 | + * @param string $class |
|
| 97 | 98 | * @return string Get correct service name |
| 98 | 99 | */ |
| 99 | 100 | public static function getName($class) |
@@ -108,7 +109,6 @@ discard block |
||
| 108 | 109 | * @param string $path Path to module |
| 109 | 110 | * @param ResourcesInterface $resources |
| 110 | 111 | * @param SystemInterface $system Framework instance |
| 111 | - * @param RequestInterface $request Request instance |
|
| 112 | 112 | */ |
| 113 | 113 | public function __construct($path, ResourcesInterface $resources, SystemInterface $system) |
| 114 | 114 | { |