| Total Complexity | 4 |
| Total Lines | 30 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 0 | ||
| 1 | <?php |
||
| 22 | class Gender { |
||
| 23 | /** |
||
| 24 | * Female. |
||
| 25 | * |
||
| 26 | * @var string |
||
| 27 | */ |
||
| 28 | const FEMALE = 'F'; |
||
| 29 | |||
| 30 | /** |
||
| 31 | * Male. |
||
| 32 | * |
||
| 33 | * @var string |
||
| 34 | */ |
||
| 35 | const MALE = 'M'; |
||
| 36 | |||
| 37 | /** |
||
| 38 | * Transform WordPress pay gender to OmniKassa gender. |
||
| 39 | * |
||
| 40 | * @param string|null $gender WordPress pay gender. |
||
| 41 | * @return string|null |
||
| 42 | */ |
||
| 43 | public static function transform( $gender ) { |
||
| 55 |
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