| Total Complexity | 1 |
| Total Lines | 11 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php namespace GeneaLabs\LaravelModelCaching\Tests\Fixtures; |
||
| 6 | class UncachedStore extends CachedModel |
||
| 7 | { |
||
| 8 | protected $fillable = [ |
||
| 9 | 'address', |
||
| 10 | 'name', |
||
| 11 | ]; |
||
| 12 | protected $table = 'stores'; |
||
| 13 | |||
| 14 | public function books() : BelongsToMany |
||
| 15 | { |
||
| 16 | return $this->belongsToMany(UncachedBook::class); |
||
| 17 | } |
||
| 19 |