Skip to content
This repository was archived by the owner on Feb 6, 2020. It is now read-only.

Commit 14910f8

Browse files
committed
CS fixes per php-cs-fixer
1 parent 10d0cba commit 14910f8

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

.php_cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
<?php
22
$finder = Symfony\CS\Finder\DefaultFinder::create()
3+
->in('benchmarks')
34
->in('src')
45
->in('test')
56
->notPath('TestAsset')

benchmarks/BenchAsset/AbstractFactoryFoo.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ public function canCreateServiceWithName(ServiceLocatorInterface $serviceLocator
1414
return true;
1515
}
1616

17-
public function createServiceWithName(ServiceLocatorInterface $serviceLocator, $name, $requestedName)
18-
{
19-
return new Foo();
20-
}
17+
public function createServiceWithName(ServiceLocatorInterface $serviceLocator, $name, $requestedName)
18+
{
19+
return new Foo();
20+
}
2121
}

benchmarks/FetchServices.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,6 @@ public function fetchAliasService()
8080
*/
8181
public function fetchAbstractFactoryService()
8282
{
83-
$result = $this->sm->get('foo');
83+
$result = $this->sm->get('foo');
8484
}
8585
}

0 commit comments

Comments
 (0)