| Conditions | 1 |
| Paths | 1 |
| Total Lines | 7 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 2 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 34 | public function data_check() |
||
| 35 | { |
||
| 36 | return [ |
||
| 37 | ['http://test.com/css', Asset::TYPE_STYLES, 'http://test.com/css'], |
||
| 38 | ['test.css', Asset::TYPE_STYLES, 'test.css'], |
||
| 39 | ['test', Asset::TYPE_STYLES, '/assets/stylesheets/test.css'], |
||
| 40 | ['test', Asset::TYPE_SCRIPTS, '/assets/scripts/test.js'], |
||
| 41 | ]; |
||
| 44 |