Completed
Push — master ( 2c436b...f60b13 )
by Andrii
02:46
created
src/ManagerTrait.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -36,6 +36,9 @@
 block discarded – undo
36 36
         return $this->_itemClass ?: get_called_class();
37 37
     }
38 38
 
39
+    /**
40
+     * @param string $name
41
+     */
39 42
     public function getItemConfig($name = null, array $config = [])
40 43
     {
41 44
         if (!isset($config['class'])) {
Please login to merge, or discard this patch.
src/ObjectTrait.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -145,7 +145,7 @@
 block discarded – undo
145 145
      *
146 146
      * @param string $name the property name or the event name
147 147
      *
148
-     * @return bool whether the property value is null
148
+     * @return boolean|null whether the property value is null
149 149
      */
150 150
     public function __unset($name)
151 151
     {
Please login to merge, or discard this patch.
src/ItemWithNameInterface.php 1 patch
Indentation   -1 removed lines patch added patch discarded remove patch
@@ -16,7 +16,6 @@
 block discarded – undo
16 16
  * the own name in the collection, to which it belongs.
17 17
  *
18 18
  * Should have the [[name]] property, or a pair of [[getName()]] and [[setName()]] methods.
19
- 
20 19
  * The interface does not declare any property or method. Classes implementing this interface should
21 20
  * declare the property or the setters itself.
22 21
  *
Please login to merge, or discard this patch.