19 lines
379 B
PHP
19 lines
379 B
PHP
<?php
|
|
|
|
namespace Zoomyboy\FilesystemTests;
|
|
|
|
trait TestsFilesystems
|
|
{
|
|
|
|
public bool $mocked = false;
|
|
|
|
public function mockFilesystem(string $identifier): FilesystemConfig
|
|
{
|
|
$this->beforeApplicationDestroyed(function () {
|
|
@exec('rm -R ' . __DIR__ . '/fakes/* > /dev/null 2>&1');
|
|
});
|
|
|
|
return new FilesystemConfig($identifier);
|
|
}
|
|
}
|