Remove unused params

This commit is contained in:
Lance Pioch 2022-10-24 12:37:42 -04:00
parent 0c60fbe794
commit de6a9058a5

View file

@ -79,7 +79,7 @@ class EggVariable extends Model
public function required(): Attribute
{
return Attribute::make(
get: fn ($value, $attributes) => in_array('required', explode('|', $this->rules)),
get: fn () => in_array('required', explode('|', $this->rules)),
);
}