| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 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 "fos_user_address" AS mcusad ON ( mcus."id" = mcusad."parentid" )'], |
||
| 36 | 'type' => 'int', |
||
| 37 | 'public' => false, |
||
| 38 | ] |
||
| 53 |