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
80f1fda7
Commit
80f1fda7
authored
Aug 03, 2013
by
crtlib
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
checkVar => checkVars
parent
004c509c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
12 deletions
+12
-12
Object.php
framework/yii/base/Object.php
+12
-12
No files found.
framework/yii/base/Object.php
View file @
80f1fda7
...
@@ -170,17 +170,17 @@ class Object implements Arrayable
...
@@ -170,17 +170,17 @@ class Object implements Arrayable
*
*
* - the class has a getter or setter method associated with the specified name
* - the class has a getter or setter method associated with the specified name
* (in this case, property name is case-insensitive);
* (in this case, property name is case-insensitive);
* - the class has a member variable with the specified name (when `$checkVar` is true);
* - the class has a member variable with the specified name (when `$checkVar
s
` is true);
*
*
* @param string $name the property name
* @param string $name the property name
* @param boolean $checkVar whether to treat member variables as properties
* @param boolean $checkVar
s
whether to treat member variables as properties
* @return boolean whether the property is defined
* @return boolean whether the property is defined
* @see canGetProperty
* @see canGetProperty
* @see canSetProperty
* @see canSetProperty
*/
*/
public
function
hasProperty
(
$name
,
$checkVar
=
true
)
public
function
hasProperty
(
$name
,
$checkVar
s
=
true
)
{
{
return
$this
->
canGetProperty
(
$name
,
$checkVar
)
||
$this
->
canSetProperty
(
$name
,
false
);
return
$this
->
canGetProperty
(
$name
,
$checkVar
s
)
||
$this
->
canSetProperty
(
$name
,
false
);
}
}
/**
/**
...
@@ -189,16 +189,16 @@ class Object implements Arrayable
...
@@ -189,16 +189,16 @@ class Object implements Arrayable
*
*
* - the class has a getter method associated with the specified name
* - the class has a getter method associated with the specified name
* (in this case, property name is case-insensitive);
* (in this case, property name is case-insensitive);
* - the class has a member variable with the specified name (when `$checkVar` is true);
* - the class has a member variable with the specified name (when `$checkVar
s
` is true);
*
*
* @param string $name the property name
* @param string $name the property name
* @param boolean $checkVar whether to treat member variables as properties
* @param boolean $checkVar
s
whether to treat member variables as properties
* @return boolean whether the property can be read
* @return boolean whether the property can be read
* @see canSetProperty
* @see canSetProperty
*/
*/
public
function
canGetProperty
(
$name
,
$checkVar
=
true
)
public
function
canGetProperty
(
$name
,
$checkVar
s
=
true
)
{
{
return
method_exists
(
$this
,
'get'
.
$name
)
||
$checkVar
&&
property_exists
(
$this
,
$name
);
return
method_exists
(
$this
,
'get'
.
$name
)
||
$checkVar
s
&&
property_exists
(
$this
,
$name
);
}
}
/**
/**
...
@@ -207,16 +207,16 @@ class Object implements Arrayable
...
@@ -207,16 +207,16 @@ class Object implements Arrayable
*
*
* - the class has a setter method associated with the specified name
* - the class has a setter method associated with the specified name
* (in this case, property name is case-insensitive);
* (in this case, property name is case-insensitive);
* - the class has a member variable with the specified name (when `$checkVar` is true);
* - the class has a member variable with the specified name (when `$checkVar
s
` is true);
*
*
* @param string $name the property name
* @param string $name the property name
* @param boolean $checkVar whether to treat member variables as properties
* @param boolean $checkVar
s
whether to treat member variables as properties
* @return boolean whether the property can be written
* @return boolean whether the property can be written
* @see canGetProperty
* @see canGetProperty
*/
*/
public
function
canSetProperty
(
$name
,
$checkVar
=
true
)
public
function
canSetProperty
(
$name
,
$checkVar
s
=
true
)
{
{
return
method_exists
(
$this
,
'set'
.
$name
)
||
$checkVar
&&
property_exists
(
$this
,
$name
);
return
method_exists
(
$this
,
'set'
.
$name
)
||
$checkVar
s
&&
property_exists
(
$this
,
$name
);
}
}
/**
/**
...
...
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