/
var
/
www
/
vhosts
/
ihelp.ro
/
httpdocs
/
vendor
/
mirko-pagliai
/
cakephp-thumber
/
src
/
TestSuite
/
/var/www/vhosts/ihelp.ro/httpdocs/vendor/mirko-pagliai/cakephp-thumber/src/TestSuite
mkdir
upload
Name
Size
Mode
Actions
TestCase.php
1071
0644
edit
dl
rm
TestTrait.php
2402
0644
edit
dl
rm
Edit:
/var/www/vhosts/ihelp.ro/httpdocs/vendor/mirko-pagliai/cakephp-thumber/src/TestSuite/TestCase.php
(1071B)
<?php declare(strict_types=1); /** * This file is part of cakephp-thumber. * * Licensed under The MIT License * For full copyright and license information, please see the LICENSE.txt * Redistributions of files must retain the above copyright notice. * * @copyright Copyright (c) Mirko Pagliai * @link https://github.com/mirko-pagliai/cakephp-thumber * @license https://opensource.org/licenses/mit-license.php MIT License */ namespace Thumber\Cake\TestSuite; use MeTools\TestSuite\TestCase as BaseTestCase; use Tools\Filesystem; /** * TestCase class */ abstract class TestCase extends BaseTestCase { use TestTrait; /** * Called after every test method * @return void * @throws \Symfony\Component\Filesystem\Exception\IOException * @throws \Symfony\Component\Finder\Exception\DirectoryNotFoundException * @throws \Tools\Exception\MethodNotExistsException */ protected function tearDown(): void { Filesystem::instance()->unlinkRecursive(THUMBER_TARGET); parent::tearDown(); } }
Save
unlinkRecursive(THUMBER_TARGET); parent::tearDown(); } }