| Conditions | 2 |
| Paths | 2 |
| Total Lines | 13 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 27 | public function find_one( $post ) : ?Entity { |
||
| 28 | $post = $this->get_post( $post ); |
||
| 29 | |||
| 30 | if ( empty( $post ) ) { |
||
| 31 | return null; |
||
| 32 | } |
||
| 33 | |||
| 34 | $entity = new Entity(); |
||
| 35 | $entity |
||
| 36 | ->set_address( $this->meta->get( (int) $post->ID, 'address', true ) ) |
||
| 37 | ->set_post( $post ); |
||
| 38 | |||
| 39 | return $entity; |
||
| 40 | } |
||
| 42 |
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