/var/www/vhosts/ihelp.ro/httpdocs/vendor/intervention/image/src/Intervention/Image
NameSizeModeActions
Commands/-0755rm
Exception/-0755rm
Facades/-0755rm
Filters/-0755rm
Gd/-0755rm
Imagick/-0755rm
AbstractColor.php64050644editdlrm
AbstractDecoder.php87220644editdlrm
AbstractDriver.php33970644editdlrm
AbstractEncoder.php63300644editdlrm
AbstractFont.php47350644editdlrm
AbstractShape.php13660644editdlrm
Constraint.php16100644editdlrm
File.php17830644editdlrm
Image.php203490644editdlrm
ImageManager.php34430644editdlrm
ImageManagerStatic.php20400644editdlrm
ImageServiceProvider.php19790644editdlrm
ImageServiceProviderLaravel4.php41130755editdlrm
ImageServiceProviderLaravelRecent.php24950644editdlrm
ImageServiceProviderLeague.php7940644editdlrm
ImageServiceProviderLumen.php7140644editdlrm
Point.php9570644editdlrm
Response.php19200644editdlrm
Size.php96070644editdlrm
Edit: /var/www/vhosts/ihelp.ro/httpdocs/vendor/intervention/image/src/Intervention/Image/File.php (1783B)
dirname = array_key_exists('dirname', $info) ? $info['dirname'] : null; $this->basename = array_key_exists('basename', $info) ? $info['basename'] : null; $this->extension = array_key_exists('extension', $info) ? $info['extension'] : null; $this->filename = array_key_exists('filename', $info) ? $info['filename'] : null; if (file_exists($path) && is_file($path)) { $this->mime = finfo_file(finfo_open(FILEINFO_MIME_TYPE), $path); } return $this; } /** * Get file size * * @return mixed */ public function filesize() { $path = $this->basePath(); if (file_exists($path) && is_file($path)) { return filesize($path); } return false; } /** * Get fully qualified path * * @return string */ public function basePath() { if ($this->dirname && $this->basename) { return ($this->dirname .'/'. $this->basename); } return null; } }