mirror of
https://github.com/koel/koel
synced 2024-11-10 06:34:14 +00:00
22 lines
560 B
PHP
22 lines
560 B
PHP
<?php
|
|
|
|
namespace Tests\Traits;
|
|
|
|
use Illuminate\Support\Facades\File;
|
|
|
|
trait SandboxesTests
|
|
{
|
|
private static function createSandbox(): void
|
|
{
|
|
config(['koel.album_cover_dir' => 'sandbox/img/covers/']);
|
|
config(['koel.artist_image_dir' => 'sandbox/img/artists/']);
|
|
|
|
@mkdir(public_path(config('koel.album_cover_dir')), 0755, true);
|
|
@mkdir(public_path(config('koel.artist_image_dir')), 0755, true);
|
|
}
|
|
|
|
private static function destroySandbox(): void
|
|
{
|
|
File::deleteDirectory(public_path('sandbox'));
|
|
}
|
|
}
|