/
var
/
www
/
vhosts
/
ihelp.ro
/
httpdocs
/
vendor
/
imagine
/
imagine
/
src
/
File
/
/var/www/vhosts/ihelp.ro/httpdocs/vendor/imagine/imagine/src/File
mkdir
upload
Name
Size
Mode
Actions
Loader.php
8004
0644
edit
dl
rm
LoaderInterface.php
954
0644
edit
dl
rm
Edit:
/var/www/vhosts/ihelp.ro/httpdocs/vendor/imagine/imagine/src/File/LoaderInterface.php
(954B)
<?php /* * This file is part of the Imagine package. * * For the full copyright and license information, please view the LICENSE file that was distributed with this source code. */ namespace Imagine\File; /** * Interface for classes that can load local or remote files. */ interface LoaderInterface { /** * Is this a local file. * * @return bool */ public function isLocalFile(); /** * Get the path of the file (local or remote). * * @return string */ public function getPath(); /** * Is the binary content already loaded? * * @return bool */ public function hasReadData(); /** * Get the file binary contents. * * @return string */ public function getData(); /** * The string representation of this object must be the file path (local or remote). * * @return string */ public function __toString(); }
Save