Skip to content

Commit a150d51

Browse files
Apply "visibility_required" CS rule to constants
php-cs-fixer fix --rules='{"visibility_required": ["property", "method", "const"]}'
1 parent ab8184f commit a150d51

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

PropertyPath.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ class PropertyPath implements \IteratorAggregate, PropertyPathInterface
2525
/**
2626
* Character used for separating between plural and singular of an element.
2727
*/
28-
const SINGULAR_SEPARATOR = '|';
28+
public const SINGULAR_SEPARATOR = '|';
2929

3030
/**
3131
* The elements of the property path.

0 commit comments

Comments
 (0)