Beispiel #1
0
 public function getLocalCachePath()
 {
     switch ($this->disk) {
         case \Storage::getDefaultDriver():
             $path = config('filesystems.disks.local.root') . '/' . $this->path;
             break;
         default:
             throw new NotSupportedException(NotSupportedException::FeatureOnTheWay);
             break;
     }
     return $path;
 }