getURL() public method

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;
 }