Completed
Push — master ( 1e127d...8448b8 )
by Vitaly
02:04
created
src/deprecated/iCore.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -60,7 +60,7 @@
 block discarded – undo
60 60
     /**
61 61
      * Установить/Получить текущий активный модуль системы
62 62
      *
63
-     * @param mixed $module Указатель на модуль для установки
63
+     * @param null|iModule $module Указатель на модуль для установки
64 64
      * @return iModule Текущий модуль системы до момента вызова данного метода
65 65
      */
66 66
     public function &active(iModule & $module = NULL);
Please login to merge, or discard this patch.
src/Service.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -59,8 +59,8 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
     {
Please login to merge, or discard this patch.