supportsAbsolutePaths() public method

Can this storage handle absolute paths?
public supportsAbsolutePaths ( ) : mixed
return mixed
Example #1
0
 /**
  * Get absolute file path.
  * If storage driver does not support absolute paths (cloud storage) returns file key
  *
  * @return string
  */
 public function getAbsolutePath()
 {
     if ($this->storage->supportsAbsolutePaths()) {
         return $this->storage->getAbsolutePath($this->key);
     }
     return $this->getKey();
 }