| 1 | <?php |
||
| 7 | abstract class CommandTest extends WebTestCase |
||
|
|
|||
| 8 | { |
||
| 9 | protected $dslDir = __DIR__.'/../dsl'; |
||
| 10 | protected $targetBundle = 'EzPublishCoreBundle'; // it is always present :-) |
||
| 11 | protected $leftovers = array(); |
||
| 12 | |||
| 13 | protected $container; |
||
| 14 | protected $app; |
||
| 15 | protected $output; |
||
| 16 | |||
| 17 | protected function setUp() |
||
| 26 | |||
| 27 | protected function tearDown() |
||
| 36 | |||
| 37 | protected function getContainer() |
||
| 50 | } |
||
| 51 |
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.