mirror of
https://code.mensbeam.com/MensBeam/Arsse.git
synced 2024-12-23 17:12:41 +00:00
719290c82a
Native glob is effectively tested via use of unmodified Lang throughout non-Lang tests
11 lines
No EOL
251 B
PHP
11 lines
No EOL
251 B
PHP
<?php
|
|
declare(strict_types=1);
|
|
namespace JKingWeb\Arsse\Test\Lang;
|
|
use Webmozart\Glob\Glob;
|
|
|
|
class TestLang extends \JKingWeb\Arsse\Lang {
|
|
|
|
protected function globFiles(string $path): array {
|
|
return Glob::glob($this->path."*.php");
|
|
}
|
|
} |