12 lines
190 B
PHP
Executable File
12 lines
190 B
PHP
Executable File
<?php
|
|
|
|
namespace thans\filesystem;
|
|
|
|
class Service extends \think\Service
|
|
{
|
|
public function register()
|
|
{
|
|
$this->app->bind('filesystem', Filesystem::class);
|
|
}
|
|
}
|