File tree Expand file tree Collapse file tree 2 files changed +4
-5
lines changed Expand file tree Collapse file tree 2 files changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,6 @@ preset: symfony
2
2
3
3
enabled :
4
4
- alpha_ordered_imports
5
- - short_array_syntax
6
5
7
6
disabled :
8
7
- single_line_throw
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ public function testExecuteClearVerbose()
24
24
$ mock ->shouldReceive ('supports ' )
25
25
->with (CacheInvalidator::CLEAR )
26
26
->andReturnTrue ();
27
- ;
27
+
28
28
$ mock ->shouldReceive ('clearCache ' )
29
29
->once ()
30
30
;
@@ -50,7 +50,7 @@ public function testExecuteBanVerbose()
50
50
$ mock ->shouldReceive ('supports ' )
51
51
->with (CacheInvalidator::INVALIDATE )
52
52
->andReturnTrue ();
53
- ;
53
+
54
54
$ mock ->shouldReceive ('invalidateRegex ' )
55
55
->with ('.* ' )
56
56
->once ()
@@ -77,7 +77,7 @@ public function testExecuteErrorVerbose()
77
77
$ mock ->shouldReceive ('supports ' )
78
78
->with (CacheInvalidator::INVALIDATE )
79
79
->andReturnFalse ();
80
- ;
80
+
81
81
$ mock ->shouldReceive ('flush ' )
82
82
->once ()
83
83
->andReturn (0 )
@@ -86,6 +86,6 @@ public function testExecuteErrorVerbose()
86
86
87
87
$ output = $ this ->runCommand ($ client , 'fos:httpcache:clear ' , 1 );
88
88
89
- $ this ->assertStringContainsString (" The configured http cache does not support \ "clear \ " or \ "invalidate \" . " , $ output );
89
+ $ this ->assertStringContainsString (' The configured http cache does not support "clear" or "invalidate". ' , $ output );
90
90
}
91
91
}
You can’t perform that action at this time.
0 commit comments