| Conditions | 1 |
| Paths | 1 |
| Total Lines | 17 |
| Code Lines | 11 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 44 | public static function relations() |
||
| 45 | { |
||
| 46 | return [ |
||
| 47 | 'type' => [ |
||
| 48 | 'model' => 'Ecommerce\Cart\Event\Type', |
||
| 49 | 'col' => 'cart_event_type_id', |
||
| 50 | ], |
||
| 51 | 'cart' => [ |
||
| 52 | 'model' => 'Ecommerce\Cart', |
||
| 53 | 'col' => 'cart_id', |
||
| 54 | ], |
||
| 55 | 'user' => [ |
||
| 56 | 'model' => 'Users\User', |
||
| 57 | 'col' => 'user_id', |
||
| 58 | ], |
||
| 59 | ]; |
||
| 60 | } |
||
| 61 | |||
| 69 |