Total Complexity | 2 |
Total Lines | 33 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
23 | class SteamApp extends Model |
||
24 | { |
||
25 | use Searchable; |
||
|
|||
26 | |||
27 | /** |
||
28 | * @var bool |
||
29 | */ |
||
30 | public $incrementing = false; |
||
31 | |||
32 | /** |
||
33 | * @var bool |
||
34 | */ |
||
35 | protected $dateFormat = false; |
||
36 | |||
37 | /** |
||
38 | * @var bool |
||
39 | */ |
||
40 | public $timestamps = false; |
||
41 | |||
42 | /** |
||
43 | * @var array |
||
44 | */ |
||
45 | protected $guarded = []; |
||
46 | |||
47 | public function searchableAs(): string |
||
50 | } |
||
51 | |||
52 | public function toSearchableArray(): array |
||
59 |