| Total Complexity | 2 |
| Total Lines | 12 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 12 | abstract class AFormats extends CommonTestClass |
||
| 13 | { |
||
| 14 | /** |
||
| 15 | * @throws UploadException |
||
| 16 | */ |
||
| 17 | public function tearDown(): void |
||
| 18 | { |
||
| 19 | if (is_file($this->mockTestFile())) { |
||
| 20 | $lib = new InfoStorage\Volume(new Translations()); |
||
| 21 | $lib->remove($this->mockTestFile()); |
||
| 22 | } |
||
| 23 | parent::tearDown(); |
||
| 24 | } |
||
| 26 |