%PDF- %PDF-
Direktori : /var/www/html/zgjedhjet2017/vendor/laravel/framework/src/Illuminate/Support/Facades/ |
Current File : /var/www/html/zgjedhjet2017/vendor/laravel/framework/src/Illuminate/Support/Facades/Storage.php |
<?php namespace Illuminate\Support\Facades; use Illuminate\Filesystem\Filesystem; /** * @see \Illuminate\Filesystem\FilesystemManager */ class Storage extends Facade { /** * Replace the given disk with a local, testing disk. * * @param string $disk * @return void */ public static function fake($disk) { (new Filesystem)->cleanDirectory( $root = storage_path('framework/testing/disks/'.$disk) ); static::set($disk, self::createLocalDriver(['root' => $root])); } /** * Get the registered name of the component. * * @return string */ protected static function getFacadeAccessor() { return 'filesystem'; } }