Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
29 | public function getSearchAttributes( bool $withsub = true ) : array |
||
30 | { |
||
31 | return array_replace( parent::getSearchAttributes( $withsub ), $this->createAttributes( [ |
||
32 | 'customer.address.id' => [ |
||
33 | 'label' => 'Customer address ID', |
||
34 | 'internalcode' => 'id', |
||
35 | 'internaldeps' => ['LEFT JOIN "users_address" AS mcusad ON ( mcus."id" = mcusad."parentid" )'], |
||
36 | 'type' => 'int', |
||
37 | 'public' => false, |
||
38 | ] |
||
63 |