/home/techb158/immovalet.com/vendor/intervention/image/src/Intervention/Image
NameSizeModeActions
Commands/-0755rm
Exception/-0755rm
Facades/-0755rm
Filters/-0755rm
Gd/-0755rm
Imagick/-0755rm
AbstractColor.php64050644editdlrm
AbstractDecoder.php87190644editdlrm
AbstractDriver.php33970644editdlrm
AbstractEncoder.php60130644editdlrm
AbstractFont.php47390644editdlrm
AbstractShape.php13660644editdlrm
Constraint.php16100644editdlrm
File.php17830644editdlrm
Image.php203450644editdlrm
ImageManager.php34430644editdlrm
ImageManagerStatic.php20400644editdlrm
ImageServiceProvider.php19790644editdlrm
ImageServiceProviderLaravel4.php41130644editdlrm
ImageServiceProviderLaravelRecent.php24950644editdlrm
ImageServiceProviderLeague.php7940644editdlrm
ImageServiceProviderLumen.php7140644editdlrm
Point.php9570644editdlrm
Response.php19240644editdlrm
Size.php95910644editdlrm
Edit: /home/techb158/immovalet.com/vendor/intervention/image/src/Intervention/Image/AbstractShape.php (1366B)
background = $color; } /** * Set border width and color of current shape * * @param int $width * @param string $color * @return void */ public function border($width, $color = null) { $this->border_width = is_numeric($width) ? intval($width) : 0; $this->border_color = is_null($color) ? '#000000' : $color; } /** * Determines if current shape has border * * @return boolean */ public function hasBorder() { return ($this->border_width >= 1); } }