This storage driver stores image files in a local filesystem. Configuration options supported by this driver: -
(string) dataDir
Absolute path to the base directory the images should be stored in
Author: Christer Edvartsen (cogo@starzinger.net)
Inheritance: implements Imbo\Storage\StorageInterface
Example #1
0
 /**
  * @covers Imbo\Storage\Filesystem::getStatus
  */
 public function testGetStatusWhenBaseDirIsWritable()
 {
     vfsStream::setup('dir');
     $driver = new Filesystem(['dataDir' => vfsStream::url('dir')]);
     $this->assertTrue($driver->getStatus());
 }