Conditions | 1 |
Paths | 1 |
Total Lines | 17 |
Code Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
21 | protected function _initSelect() |
||
22 | { |
||
23 | parent::_initSelect(); |
||
24 | |||
25 | $this->getSelect()->joinLeft( |
||
26 | ['ac_contact' => $this->_resource->getTableName(SchemaInterface::CONTACT_TABLE)], |
||
27 | 'ac_contact.email = e.email', |
||
28 | ['ac_contact.activecampaign_id'] |
||
29 | ); |
||
30 | |||
31 | $this->getSelect()->joinLeft( |
||
32 | ['ac_customer' => $this->_resource->getTableName(SchemaInterface::CUSTOMER_TABLE)], |
||
33 | 'ac_customer.magento_customer_id = e.entity_id', |
||
34 | ['ac_customer.activecampaign_id'] |
||
35 | ); |
||
36 | |||
37 | return $this; |
||
38 | } |
||
69 |
The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g.
excluded_paths: ["lib/*"]
, you can move it to the dependency path list as follows:For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths