| Total Complexity | 2 |
| Total Lines | 23 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 18 | abstract class BaseModel extends Model |
||
| 19 | { |
||
| 20 | use SetAttribute; |
||
| 21 | use Searchable; |
||
| 22 | |||
| 23 | public $timestamps = false; |
||
| 24 | |||
| 25 | 42 | protected $fillable = ['name']; |
|
| 26 | |||
| 27 | 42 | public function __construct(array $attributes = []) |
|
| 34 | } |
||
| 35 | |||
| 36 | protected function scopeSearchBy(Builder $builder, string $value) |
||
| 43 |