Skip to content

Commit afe58d4

Browse files
committed
Fix CS
1 parent 0799a7d commit afe58d4

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

LazyProxy/PhpDumper/DumperInterface.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ interface DumperInterface
2525
*
2626
* @param bool|null &$asGhostObject Set to true after the call if the proxy is a ghost object
2727
*/
28-
public function isProxyCandidate(Definition $definition/*, bool &$asGhostObject = null */): bool;
28+
public function isProxyCandidate(Definition $definition/* , bool &$asGhostObject = null */): bool;
2929

3030
/**
3131
* Generates the code to be used to instantiate a proxy in the dumped factory code.

Loader/FileLoader.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ public function import(mixed $resource, string $type = null, bool|string $ignore
9292
* @param string|string[]|null $exclude A globbed path of files to exclude or an array of globbed paths of files to exclude
9393
* @param string|null $source The path to the file that defines the auto-discovery rule
9494
*/
95-
public function registerClasses(Definition $prototype, string $namespace, string $resource, string|array $exclude = null/*, string $source = null*/)
95+
public function registerClasses(Definition $prototype, string $namespace, string $resource, string|array $exclude = null/* , string $source = null */)
9696
{
9797
if (!str_ends_with($namespace, '\\')) {
9898
throw new InvalidArgumentException(sprintf('Namespace prefix must end with a "\\": "%s".', $namespace));

Tests/ParameterBag/EnvPlaceholderParameterBagTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ class EnvPlaceholderParameterBagTest extends TestCase
2323
public function testEnumEnvVarProcessorPassesRegex()
2424
{
2525
$bag = new EnvPlaceholderParameterBag();
26-
$name = \trim((new EnvConfigurator('FOO'))->enum(StringBackedEnum::class), '%');
26+
$name = trim((new EnvConfigurator('FOO'))->enum(StringBackedEnum::class), '%');
2727
$this->assertIsString($bag->get($name));
2828
}
2929

0 commit comments

Comments
 (0)