Commit 15818c8c by Alexander Makarov

Added missing PhpDoc

parent f3b057c4
...@@ -128,6 +128,7 @@ class Component extends Object ...@@ -128,6 +128,7 @@ class Component extends Object
* will be implicitly called when executing `$component->property = $value;`. * will be implicitly called when executing `$component->property = $value;`.
* @param string $name the property name or the event name * @param string $name the property name or the event name
* @param mixed $value the property value * @param mixed $value the property value
* @return mixed value that was set
* @throws Exception if the property is not defined or read-only. * @throws Exception if the property is not defined or read-only.
* @see __get * @see __get
*/ */
...@@ -200,6 +201,7 @@ class Component extends Object ...@@ -200,6 +201,7 @@ class Component extends Object
* Do not call this method directly as it is a PHP magic method that * Do not call this method directly as it is a PHP magic method that
* will be implicitly called when executing `unset($component->property)`. * will be implicitly called when executing `unset($component->property)`.
* @param string $name the property name * @param string $name the property name
* @return null
* @throws Exception if the property is read only. * @throws Exception if the property is read only.
*/ */
public function __unset($name) public function __unset($name)
......
...@@ -89,6 +89,7 @@ class Object ...@@ -89,6 +89,7 @@ class Object
* will be implicitly called when executing `$object->property = $value;`. * will be implicitly called when executing `$object->property = $value;`.
* @param string $name the property name or the event name * @param string $name the property name or the event name
* @param mixed $value the property value * @param mixed $value the property value
* @return mixed value that was set
* @throws Exception if the property is not defined or read-only. * @throws Exception if the property is not defined or read-only.
* @see __get * @see __get
*/ */
......
...@@ -80,6 +80,7 @@ class ColumnSchema extends \yii\base\Component ...@@ -80,6 +80,7 @@ class ColumnSchema extends \yii\base\Component
/** /**
* Extracts the PHP type from DB type. * Extracts the PHP type from DB type.
* @return string PHP type name.
*/ */
protected function getPhpType() protected function getPhpType()
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment