mirror of
https://github.com/laravel/valet.git
synced 2026-02-06 00:40:06 +01:00
15 lines
302 B
PHP
15 lines
302 B
PHP
<?php
|
|
|
|
class BaseDriverTestCase extends Yoast\PHPUnitPolyfills\TestCases\TestCase
|
|
{
|
|
public function projects(): array
|
|
{
|
|
return Filesystem::scanDir(__DIR__.'/projects');
|
|
}
|
|
|
|
public function projectDir(string $name): string
|
|
{
|
|
return __DIR__.'/projects/'.$name;
|
|
}
|
|
}
|