Skip to content

Commit 6c81903

Browse files
committed
Code reformat
1 parent 224d69d commit 6c81903

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/CompilerPass/PublicServicePass.php

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,11 @@ public function __construct($regex = '|.*|')
2424
$this->regex = $regex;
2525
}
2626

27-
public function process(ContainerBuilder $container) {
27+
/**
28+
* @param ContainerBuilder $container
29+
*/
30+
public function process(ContainerBuilder $container)
31+
{
2832
foreach ($container->getDefinitions() as $id => $definition) {
2933
if (preg_match($this->regex, $id)) {
3034
$definition->setPublic(true);

0 commit comments

Comments
 (0)