| Total Complexity | 2 |
| Total Lines | 18 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 11 | class Address extends DataLayer |
||
| 12 | { |
||
| 13 | /** |
||
| 14 | * Address constructor. |
||
| 15 | */ |
||
| 16 | public function __construct() |
||
| 19 | } |
||
| 20 | |||
| 21 | /** |
||
| 22 | * @param int $user_id |
||
| 23 | * @param string $columns |
||
| 24 | * @return Address|null |
||
| 25 | */ |
||
| 26 | public function findByUser(int $user_id, string $columns = '*'): ?Address |
||
| 29 | } |
||
| 30 | } |