| Total Complexity | 1 |
| Total Lines | 15 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 7 | class TestUserNonComposite extends Model |
||
| 8 | { |
||
| 9 | use \MaksimM\CompositePrimaryKeys\Http\Traits\HasCompositePrimaryKey; |
||
|
|
|||
| 10 | |||
| 11 | protected $table = 'non_composite_users'; |
||
| 12 | |||
| 13 | protected $primaryKey = 'user_id'; |
||
| 14 | |||
| 15 | protected $fillable = [ |
||
| 16 | 'name', |
||
| 17 | ]; |
||
| 18 | |||
| 19 | public function organization() |
||
| 24 |