Skip to content

Commit ef1bab7

Browse files
authored
Merge pull request #590 from FriendsOfSymfony/analysis-KoJGPe
Apply fixes from StyleCI
2 parents 715d06d + 08459a5 commit ef1bab7

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

src/Configuration/InvalidatePath.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ public function __construct(
4444
*/
4545
public function setValue($data)
4646
{
47-
$this->setPaths((is_array($data) ? $data : [$data]));
47+
$this->setPaths(is_array($data) ? $data : [$data]);
4848
}
4949

5050
/**

src/DependencyInjection/Configuration.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -734,7 +734,7 @@ private function addTagSection(ArrayNodeDefinition $rootNode)
734734
->thenInvalid('Configured a tag_expression but ExpressionLanugage is not available')
735735
->end()
736736
->children()
737-
;
737+
;
738738
$this->addMatch($rules);
739739

740740
$rules

tests/Functional/EventListener/InvalidationListenerTest.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -131,6 +131,7 @@ public function testInvalidateRouteWithPHPAttributes()
131131

132132
/**
133133
* @dataProvider getStatusCodesThatTriggerInvalidation
134+
*
134135
* @requires PHP 8.0
135136
*/
136137
public function testInvalidatePathWithPHPAttributes($statusCode)

0 commit comments

Comments
 (0)