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
5fdc3d40
Commit
5fdc3d40
authored
May 19, 2014
by
Qiang Xue
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added support for using path alias with `FileDependency::fileName`
parent
5439ab78
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
2 deletions
+4
-2
CHANGELOG.md
framework/CHANGELOG.md
+1
-0
FileDependency.php
framework/caching/FileDependency.php
+3
-2
No files found.
framework/CHANGELOG.md
View file @
5fdc3d40
...
@@ -54,6 +54,7 @@ Yii Framework 2 Change Log
...
@@ -54,6 +54,7 @@ Yii Framework 2 Change Log
-
Enh: Added method ErrorHandler::unregister() for unregistering the ErrorHandler (cebe)
-
Enh: Added method ErrorHandler::unregister() for unregistering the ErrorHandler (cebe)
-
Enh: Added
`all`
option to
`MigrateController::actionDown()`
action (creocoder, umneeq)
-
Enh: Added
`all`
option to
`MigrateController::actionDown()`
action (creocoder, umneeq)
-
Enh: Added support for array attributes in
`exist`
validator (creocoder)
-
Enh: Added support for array attributes in
`exist`
validator (creocoder)
-
Enh: Added support for using path alias with
`FileDependency::fileName`
(qiangxue)
-
Chg #2913: RBAC
`DbManager`
is now initialized via migration (samdark)
-
Chg #2913: RBAC
`DbManager`
is now initialized via migration (samdark)
-
Chg #3036: Upgraded Twitter Bootstrap to 3.1.x (qiangxue)
-
Chg #3036: Upgraded Twitter Bootstrap to 3.1.x (qiangxue)
-
Chg #3175: InvalidCallException, InvalidParamException, UnknownMethodException are now extended from SPL BadMethodCallException (samdark)
-
Chg #3175: InvalidCallException, InvalidParamException, UnknownMethodException are now extended from SPL BadMethodCallException (samdark)
...
...
framework/caching/FileDependency.php
View file @
5fdc3d40
...
@@ -7,6 +7,7 @@
...
@@ -7,6 +7,7 @@
namespace
yii\caching
;
namespace
yii\caching
;
use
Yii
;
use
yii\base\InvalidConfigException
;
use
yii\base\InvalidConfigException
;
/**
/**
...
@@ -21,7 +22,7 @@ use yii\base\InvalidConfigException;
...
@@ -21,7 +22,7 @@ use yii\base\InvalidConfigException;
class
FileDependency
extends
Dependency
class
FileDependency
extends
Dependency
{
{
/**
/**
* @var string the
name of the file
whose last modification time is used to
* @var string the
file path or path alias
whose last modification time is used to
* check if the dependency has been changed.
* check if the dependency has been changed.
*/
*/
public
$fileName
;
public
$fileName
;
...
@@ -39,6 +40,6 @@ class FileDependency extends Dependency
...
@@ -39,6 +40,6 @@ class FileDependency extends Dependency
throw
new
InvalidConfigException
(
'FileDependency::fileName must be set'
);
throw
new
InvalidConfigException
(
'FileDependency::fileName must be set'
);
}
}
return
@
filemtime
(
$this
->
fileName
);
return
@
filemtime
(
Yii
::
getAlias
(
$this
->
fileName
)
);
}
}
}
}
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