Total Complexity | 1 |
Total Lines | 15 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
9 | class CachingPolicyController extends Controller implements TestOnly |
||
10 | { |
||
11 | private static $dependencies = [ |
||
|
|||
12 | 'Policies' => '%$' . CachingPolicy::class, |
||
13 | ]; |
||
14 | |||
15 | private static $allowed_actions = [ |
||
16 | 'test', |
||
17 | ]; |
||
18 | |||
19 | private static $url_segment = 'CachingPolicyController'; |
||
20 | |||
21 | public function test() |
||
26 |