| 1 | <?php |
||
| 3 | class AbstractDocumentableObjectTest extends SwaggerGen_TestCase |
||
|
|
|||
| 4 | { |
||
| 5 | |||
| 6 | protected $parent; |
||
| 7 | |||
| 8 | protected function setUp() |
||
| 12 | |||
| 13 | protected function assertPreConditions() |
||
| 17 | |||
| 18 | /** |
||
| 19 | * @covers \SwaggerGen\Swagger\Tag::__construct |
||
| 20 | * @covers \SwaggerGen\Swagger\AbstractDocumentableObject->handleCommand |
||
| 21 | */ |
||
| 22 | public function testCommandDocWithoutDescription() |
||
| 41 | |||
| 42 | /** |
||
| 43 | * @covers \SwaggerGen\Swagger\Tag::__construct |
||
| 44 | * @covers \SwaggerGen\Swagger\AbstractDocumentableObject->handleCommand |
||
| 45 | */ |
||
| 46 | public function testCommandDocWithDescription() |
||
| 66 | |||
| 67 | } |
||
| 68 |
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.