@@ -36,6 +36,9 @@ |
||
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'])) { |
@@ -145,7 +145,7 @@ |
||
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 | { |
@@ -16,7 +16,6 @@ |
||
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 | * |