1 | <?php |
||
3 | class EscapeTest extends BridgeTestCase |
||
|
|||
4 | { |
||
5 | /** @dataProvider escapingProvider */ |
||
6 | public function testRealEscapeString($expected, $unescaped) |
||
10 | |||
11 | /** @dataProvider escapingProvider */ |
||
12 | public function testEscapeString($expected, $unescaped) |
||
16 | |||
17 | public function escapingProvider() |
||
26 | } |
You can fix this by adding a namespace to your class:
When choosing a vendor namespace, try to pick something that is not too generic to avoid conflicts with other libraries.