Skip to content

Commit b3ca345

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

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Tests/Functional/Bundle/FirewallEntryPointBundle/Security/EntryPointStub.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
class EntryPointStub implements AuthenticationEntryPointInterface
2020
{
21-
const RESPONSE_TEXT = '2be8e651259189d841a19eecdf37e771e2431741';
21+
public const RESPONSE_TEXT = '2be8e651259189d841a19eecdf37e771e2431741';
2222

2323
public function start(Request $request, AuthenticationException $authException = null): Response
2424
{

0 commit comments

Comments
 (0)