1 | <?php |
||
6 | class ExecParamsTest extends PHPUnit_Framework_TestCase |
||
7 | { |
||
8 | /** @var ExecParams */ |
||
9 | private $sut; |
||
10 | |||
11 | protected function setUp() |
||
15 | |||
16 | public function testGetParamsReturnsEscapedParamsByDefault() |
||
20 | |||
21 | public function testGetParamsReturnsNotEscapedParamsIfConfigured() |
||
27 | |||
28 | public function testGetFullCommandReturnsEscapedCommandByDefault() |
||
32 | |||
33 | public function testGetFullCommandReturnsNotEscapedCommandIfConfigured() |
||
39 | |||
40 | public function testGetFullCommandReturnsNotEscapedCommandAndArgsIfConfigured() |
||
46 | |||
47 | } |
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.