Skip to content

Commit 5ba20c6

Browse files
committed
[ci-review] Rector Rectify
1 parent e60b7fb commit 5ba20c6

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

utils/compiler/src/PhpScoper/StaticEasyPrefixer.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ final class StaticEasyPrefixer
99
/**
1010
* @var string[]
1111
*/
12-
public const EXCLUDED_CLASSES = [
12+
final public const EXCLUDED_CLASSES = [
1313
// part of public interface of configs.php
1414
'Symfony\Component\DependencyInjection\Loader\Configurator\ContainerConfigurator',
1515
// for SmartFileInfo

utils/compiler/src/ValueObject/ScoperOption.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,25 +12,25 @@ final class ScoperOption
1212
/**
1313
* @var string
1414
*/
15-
public const FINDERS = 'finders';
15+
final public const FINDERS = 'finders';
1616

1717
/**
1818
* @var string
1919
*/
20-
public const PATCHERS = 'patchers';
20+
final public const PATCHERS = 'patchers';
2121

2222
/**
2323
* @var string
2424
*/
25-
public const WHITELIST = 'whitelist';
25+
final public const WHITELIST = 'whitelist';
2626

2727
/**
2828
* @var string
2929
*/
30-
public const FILES_WHITELIST = 'files-whitelist';
30+
final public const FILES_WHITELIST = 'files-whitelist';
3131

3232
/**
3333
* @var string
3434
*/
35-
public const PREFIX = 'prefix';
35+
final public const PREFIX = 'prefix';
3636
}

0 commit comments

Comments
 (0)