| 1 | <?php |
||
| 3 | abstract class DeploynautTest extends SapphireTest { |
||
|
1 ignored issue
–
show
|
|||
| 4 | |||
| 5 | /** |
||
| 6 | * @var string |
||
| 7 | */ |
||
| 8 | protected $envPath = ''; |
||
| 9 | |||
| 10 | /** |
||
| 11 | * Setup the environment to point to a temporary location |
||
| 12 | * |
||
| 13 | * @param string $path |
||
| 14 | */ |
||
| 15 | protected function setTemporaryPath($path) { |
||
| 30 | |||
| 31 | public function setUp() { |
||
| 42 | |||
| 43 | public function tearDown() { |
||
| 54 | } |
||
| 55 | |||
| 62 |
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.