예제 #1
0
파일: File.php 프로젝트: WolfGangS/TigerKit
 public function putData($data)
 {
     $storage = TigerApp::getStorage();
     $this->filesize = strlen($data);
     $success = $storage->put($this->filename, $data);
     $this->save();
     return $success;
 }
예제 #2
0
 public function testGetStorage()
 {
     $storage = TigerApp::getStorage();
     $this->assertEquals('League\\Flysystem\\Filesystem', get_class($storage));
 }