/home/techb158/ileadtechnology.com/vendor/laravolt/avatar/src/Concerns
NameSizeModeActions
AttributeSetter.php17600644editdlrm
Edit: /home/techb158/ileadtechnology.com/vendor/laravolt/avatar/src/Concerns/AttributeSetter.php (1760B)
themes)) { return $this; } $this->theme = $theme; } $this->initTheme(); return $this; } public function setBackground($hex) { $this->background = $hex; return $this; } public function setForeground($hex) { $this->foreground = $hex; return $this; } public function setDimension($width, $height = null) { if (! $height) { $height = $width; } $this->width = $width; $this->height = $height; return $this; } public function setFontSize($size) { $this->fontSize = $size; return $this; } public function setFontFamily($font) { $this->fontFamily = $font; return $this; } public function setBorder($size, $color, $radius = 0) { $this->borderSize = $size; $this->borderColor = $color; $this->borderRadius = $radius; return $this; } public function setBorderRadius($radius) { $this->borderRadius = $radius; return $this; } public function setShape($shape) { $this->shape = $shape; return $this; } public function setChars($chars) { $this->chars = $chars; return $this; } public function setFont($font) { if (is_file($font)) { $this->font = $font; } return $this; } }