mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-03 08:41:39 +09:00
12 lines
237 B
PHP
12 lines
237 B
PHP
<?php
|
|
namespace Codeception\Module;
|
|
|
|
use Codeception\Util\FileSystem;
|
|
|
|
class InstallHelper extends \Codeception\Module
|
|
{
|
|
public function _before(\Codeception\TestInterface $test)
|
|
{
|
|
FileSystem::deleteDir('files');
|
|
}
|
|
}
|