| Conditions | 2 |
| Paths | 2 |
| Total Lines | 12 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 43 | private function replaceValues( $syntax ) |
||
| 44 | { |
||
| 45 | $bindParams = $this->queryStructure->getElement( QueryStructure::BIND_PARAMS ); |
||
| 46 | $search = array(); |
||
| 47 | $replace = array(); |
||
| 48 | foreach ( $bindParams as $key => $value ) { |
||
| 49 | $search[] = ':' . $key; |
||
| 50 | $replace[] = DbConnect::getInstance()->quote( $value ); |
||
| 51 | } |
||
| 52 | $syntax = str_ireplace( $search, $replace, $syntax ); |
||
| 53 | |||
| 54 | return $syntax; |
||
| 55 | |||
| 58 | } |
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