mirror of
https://github.com/flarum/framework.git
synced 2024-12-04 16:23:37 +08:00
16 lines
264 B
Plaintext
16 lines
264 B
Plaintext
<?php
|
|
|
|
namespace Illuminate\Filesystem;
|
|
|
|
class Filesystem
|
|
{
|
|
/**
|
|
* Find path names matching a given pattern.
|
|
*
|
|
* @param string $pattern
|
|
* @param int $flags
|
|
* @return mixed[]|false
|
|
*/
|
|
public function glob($pattern, $flags = 0);
|
|
}
|