mirror of
https://code.mensbeam.com/MensBeam/Arsse.git
synced 2024-12-23 17:12:41 +00:00
11 lines
251 B
PHP
11 lines
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");
|
||
|
}
|
||
|
}
|