getURL() 공개 메소드

public getURL ( $key )
예제 #1
0
파일: File.php 프로젝트: Webiny/Framework
 /**
  * @inheritdoc
  */
 public function getUrl()
 {
     if ($this->url === null) {
         $this->url = $this->storage->getURL($this->key);
     }
     return $this->url;
 }