Skip to content

Commit 967165a

Browse files
authored
Merge pull request #326 from FriendsOfSymfony/analysis-8K0lEe
Apply fixes from StyleCI
2 parents adbb4a4 + d0290d5 commit 967165a

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

Command/InvalidateTagCommand.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,4 +72,5 @@ protected function execute(InputInterface $input, OutputInterface $output)
7272
$tags = $input->getArgument('tags');
7373

7474
$this->cacheManager->invalidateTags($tags);
75-
}}
75+
}
76+
}

DependencyInjection/FOSHttpCacheExtension.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -287,7 +287,7 @@ private function createHttpDispatcherDefinition(ContainerBuilder $container, arr
287287
$definition = new Definition(HttpDispatcher::class, [
288288
$config['servers'],
289289
$baseUrl,
290-
$httpClient
290+
$httpClient,
291291
]);
292292

293293
$container->setDefinition($serviceName, $definition);

Tests/Functional/EventListener/TagListenerTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ public function testAnnotationTagsAreInvalidated()
3939
)
4040
->shouldReceive('supports')->andReturn(true)
4141
->shouldReceive('invalidateTags')->with(['all-items'])
42-
->shouldReceive('invalidateTags')->with (['item-123'])
42+
->shouldReceive('invalidateTags')->with(['item-123'])
4343
->shouldReceive('flush')->once()
4444
;
4545

Tests/Resources/Fixtures/config/full.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,5 +125,4 @@
125125
'debug' => array(
126126
'header' => 'FOS-Cache-Debug',
127127
),
128-
129128
));

Tests/Unit/DependencyInjection/Compiler/LoggerPassTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ private function getConfig()
7676
'servers' => array(
7777
'127.0.0.1',
7878
),
79-
]
79+
],
8080
),
8181
),
8282
'tags' => array(

0 commit comments

Comments
 (0)