Example #1
0
 /**
  * Get the contents of a remote file.
  *
  * @param string $path
  * @return string 
  * @static 
  */
 public static function getRemote($path)
 {
     return \Illuminate\Filesystem\Filesystem::getRemote($path);
 }
Example #2
0
 /**
  * Get the asset contents.
  *
  * @return string
  */
 public function getContent()
 {
     return $this->files->getRemote($this->absolutePath);
 }