mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-06 10:11:38 +09:00
12 lines
205 B
PHP
12 lines
205 B
PHP
<?php
|
|
namespace Codeception\Module;
|
|
|
|
use Codeception\Util\FileSystem;
|
|
|
|
class InstallHelper extends \Codeception\Module
|
|
{
|
|
public function _before()
|
|
{
|
|
FileSystem::deleteDir('files');
|
|
}
|
|
}
|