예제 #1
0
파일: Image.php 프로젝트: kingsj/core
 /**
  * Get resized file public URL
  *
  * @param string $size Size prefix
  * @param string $name File name
  *
  * @return string
  */
 protected function getResizedPublicURL($size, $name)
 {
     return $this->isUseS3Icons() ? $this->getS3()->getURL($this->getResizedPath($size, $name)) : parent::getResizedPublicURL($size, $name);
 }