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
846f1701
Commit
846f1701
authored
Aug 03, 2013
by
crtlib
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Component::hasProperty() small optimization
parent
27238f8d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
Component.php
framework/yii/base/Component.php
+6
-6
No files found.
framework/yii/base/Component.php
View file @
846f1701
...
...
@@ -221,18 +221,18 @@ class Component extends Object
* - the class has a getter or setter method associated with the specified name
* (in this case, property name is case-insensitive);
* - the class has a member variable with the specified name (when `$checkVar` is true);
* - an attached behavior has a property of the given name (when `$checkBehavior` is true).
* - an attached behavior has a property of the given name (when `$checkBehavior
s
` is true).
*
* @param string $name the property name
* @param boolean $checkVar whether to treat member variables as properties
* @param boolean $checkBehavior whether to treat behaviors' properties as properties of this component
* @param boolean $checkBehavior
s
whether to treat behaviors' properties as properties of this component
* @return boolean whether the property is defined
* @see canGetProperty
* @see canSetProperty
*/
public
function
hasProperty
(
$name
,
$checkVar
=
true
,
$checkBehavior
=
true
)
public
function
hasProperty
(
$name
,
$checkVar
=
true
,
$checkBehavior
s
=
true
)
{
return
$this
->
canGetProperty
(
$name
,
$checkVar
,
$checkBehavior
)
||
$this
->
canSetProperty
(
$name
,
$checkVar
,
$checkBehavior
);
return
$this
->
canGetProperty
(
$name
,
$checkVar
,
$checkBehavior
s
)
||
$this
->
canSetProperty
(
$name
,
false
,
$checkBehavior
);
}
/**
...
...
@@ -242,7 +242,7 @@ class Component extends Object
* - the class has a getter method associated with the specified name
* (in this case, property name is case-insensitive);
* - the class has a member variable with the specified name (when `$checkVar` is true);
* - an attached behavior has a readable property of the given name (when `$checkBehavior` is true).
* - an attached behavior has a readable property of the given name (when `$checkBehavior
s
` is true).
*
* @param string $name the property name
* @param boolean $checkVar whether to treat member variables as properties
...
...
@@ -272,7 +272,7 @@ class Component extends Object
* - the class has a setter method associated with the specified name
* (in this case, property name is case-insensitive);
* - the class has a member variable with the specified name (when `$checkVar` is true);
* - an attached behavior has a writable property of the given name (when `$checkBehavior` is true).
* - an attached behavior has a writable property of the given name (when `$checkBehavior
s
` is true).
*
* @param string $name the property name
* @param boolean $checkVar whether to treat member variables as properties
...
...
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