Skip to content

Commit f029d6f

Browse files
committed
Set constant visibility in tests to private where possible.
1 parent 0848a8a commit f029d6f

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

Tests/EventDispatcherTest.php

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,9 @@
2020
class EventDispatcherTest extends TestCase
2121
{
2222
/* Some pseudo events */
23-
const preFoo = 'pre.foo';
24-
const postFoo = 'post.foo';
25-
const preBar = 'pre.bar';
26-
const postBar = 'post.bar';
23+
private const preFoo = 'pre.foo';
24+
private const postFoo = 'post.foo';
25+
private const preBar = 'pre.bar';
2726

2827
/**
2928
* @var EventDispatcher

0 commit comments

Comments
 (0)