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
b9a83551
Commit
b9a83551
authored
Apr 04, 2013
by
resurtm
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixes issue related to the cache dependencies constructor parameters. (Discussed…
Fixes issue related to the cache dependencies constructor parameters. (Discussed via Skype with Qiang.)
parent
aad6e6c8
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
18 additions
and
29 deletions
+18
-29
DbDependency.php
framework/caching/DbDependency.php
+8
-10
ExpressionDependency.php
framework/caching/ExpressionDependency.php
+1
-12
FileDependency.php
framework/caching/FileDependency.php
+9
-7
No files found.
framework/caching/DbDependency.php
View file @
b9a83551
...
...
@@ -28,25 +28,23 @@ class DbDependency extends Dependency
public
$db
=
'db'
;
/**
* @var string the SQL query whose result is used to determine if the dependency has been changed.
* Only the first row of the query result will be used.
* Only the first row of the query result will be used. This property must be always set, otherwise
* an exception would be raised.
*/
public
$sql
;
/**
* @var array the parameters (name=>value) to be bound to the SQL statement specified by [[sql]].
*/
public
$params
;
public
$params
=
array
()
;
/**
* Constructor.
* @param string $sql the SQL query whose result is used to determine if the dependency has been changed.
* @param array $params the parameters (name=>value) to be bound to the SQL statement specified by [[sql]].
* @param array $config name-value pairs that will be used to initialize the object properties
* Initializes the database dependency object.
*/
public
function
__construct
(
$sql
,
$params
=
array
(),
$config
=
array
()
)
public
function
init
(
)
{
$this
->
sql
=
$sql
;
$this
->
params
=
$params
;
parent
::
__construct
(
$config
);
if
(
$this
->
sql
===
null
)
{
throw
new
InvalidConfigException
(
'DbDependency::sql must be set.'
)
;
}
}
/**
...
...
framework/caching/ExpressionDependency.php
View file @
b9a83551
...
...
@@ -22,18 +22,7 @@ class ExpressionDependency extends Dependency
/**
* @var string the PHP expression whose result is used to determine the dependency.
*/
public
$expression
;
/**
* Constructor.
* @param string $expression the PHP expression whose result is used to determine the dependency.
* @param array $config name-value pairs that will be used to initialize the object properties
*/
public
function
__construct
(
$expression
=
'true'
,
$config
=
array
())
{
$this
->
expression
=
$expression
;
parent
::
__construct
(
$config
);
}
public
$expression
=
'true'
;
/**
* Generates the data needed to determine if dependency has been changed.
...
...
framework/caching/FileDependency.php
View file @
b9a83551
...
...
@@ -7,6 +7,8 @@
namespace
yii\caching
;
use
yii\base\InvalidConfigException
;
/**
* FileDependency represents a dependency based on a file's last modification time.
*
...
...
@@ -20,19 +22,19 @@ class FileDependency extends Dependency
{
/**
* @var string the name of the file whose last modification time is used to
* check if the dependency has been changed.
* check if the dependency has been changed. This property must be always set,
* otherwise an exception would be raised.
*/
public
$fileName
;
/**
* Constructor.
* @param string $fileName name of the file whose change is to be checked.
* @param array $config name-value pairs that will be used to initialize the object properties
* Initializes the database dependency object.
*/
public
function
__construct
(
$fileName
=
null
,
$config
=
array
()
)
public
function
init
(
)
{
$this
->
fileName
=
$fileName
;
parent
::
__construct
(
$config
);
if
(
$this
->
file
===
null
)
{
throw
new
InvalidConfigException
(
'FileDependency::fileName must be set.'
);
}
}
/**
...
...
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