10000 cs · symfony/symfony@7f9ee32 · GitHub
[go: up one dir, main page]

Skip to content

Commit 7f9ee32

Browse files
committed
cs
1 parent 799efa9 commit 7f9ee32

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

src/Symfony/Component/Config/Builder/ClassBuilder.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ public function build(): string
7474
$require .= strtr('require_once __DIR__.\'FILE\';', ['FILE' => \DIRECTORY_SEPARATOR.implode(\DIRECTORY_SEPARATOR, $path)]).\PHP_EOL;
7575
}
7676

77-
$implements = [] === $this->implements ? '' : 'implements ' . implode(', ', $this->implements);
77+
$implements = [] === $this->implements ? '' : 'implements '.implode(', ', $this->implements);
7878
$body = '';
7979
foreach ($this->properties as $property) {
8080
$body .= self::INDENTATION.$property->getContent().\PHP_EOL;

src/Symfony/Component/Config/Builder/ConfigBuilderInterface.php

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
<?php
22

3+
/*
4+
* This file is part of the Symfony package.
5+
*
6+
* (c) Fabien Potencier <fabien@symfony.com>
7+
*
8+
* For the full copyright and license information, please view the LICENSE
9+
* file that was distributed with this source code.
10+
*/
311

412
namespace Symfony\Component\Config\Builder;
513

0 commit comments

Comments
 (0)
0