Conditions | 2 |
Paths | 2 |
Total Lines | 10 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 6 |
Changes | 0 |
1 | <?php |
||
40 | protected function generateDependencyData($cache) |
||
41 | { |
||
42 | if ($this->fileName === null) { |
||
43 | throw new InvalidConfigException('FileDependency::fileName must be set'); |
||
44 | } |
||
45 | |||
46 | $fileName = Yii::getAlias($this->fileName); |
||
47 | |||
48 | clearstatcache(false, $fileName); |
||
|
|||
49 | return @filemtime($fileName); |
||
50 | } |
||
52 |