attributes = isset($attributes['cuztom']) ? $attributes['cuztom'] : $attributes; } /** * Getter. * * @param string $attribute * @return string|null */ public function get($attribute) { return isset($this->attributes[$attribute]) ? $this->attributes[$attribute] : null; } /** * Get all attributes. * * @return array */ public function getAll() { return $this->attributes; } }