supportsTouching() 공개 메소드

Can this storage touch a file?
public supportsTouching ( ) : mixed
리턴 mixed
예제 #1
0
파일: File.php 프로젝트: Webiny/Framework
 /**
  * Touch a file (change time modified)
  *
  * @return $this
  */
 public function touch()
 {
     if ($this->storage->supportsTouching()) {
         $this->storage->touchKey($this->key);
         $this->timeModified = null;
     }
     return $this;
 }