Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Y
yii2
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
PSDI Army
yii2
Commits
15818c8c
Commit
15818c8c
authored
Nov 12, 2011
by
Alexander Makarov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added missing PhpDoc
parent
f3b057c4
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
0 deletions
+4
-0
Component.php
framework/base/Component.php
+2
-0
Object.php
framework/base/Object.php
+1
-0
ColumnSchema.php
framework/db/dao/ColumnSchema.php
+1
-0
No files found.
framework/base/Component.php
View file @
15818c8c
...
...
@@ -128,6 +128,7 @@ class Component extends Object
* will be implicitly called when executing `$component->property = $value;`.
* @param string $name the property name or the event name
* @param mixed $value the property value
* @return mixed value that was set
* @throws Exception if the property is not defined or read-only.
* @see __get
*/
...
...
@@ -200,6 +201,7 @@ class Component extends Object
* Do not call this method directly as it is a PHP magic method that
* will be implicitly called when executing `unset($component->property)`.
* @param string $name the property name
* @return null
* @throws Exception if the property is read only.
*/
public
function
__unset
(
$name
)
...
...
framework/base/Object.php
View file @
15818c8c
...
...
@@ -89,6 +89,7 @@ class Object
* will be implicitly called when executing `$object->property = $value;`.
* @param string $name the property name or the event name
* @param mixed $value the property value
* @return mixed value that was set
* @throws Exception if the property is not defined or read-only.
* @see __get
*/
...
...
framework/db/dao/ColumnSchema.php
View file @
15818c8c
...
...
@@ -80,6 +80,7 @@ class ColumnSchema extends \yii\base\Component
/**
* Extracts the PHP type from DB type.
* @return string PHP type name.
*/
protected
function
getPhpType
()
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment