| Conditions | 2 |
| Paths | 1 |
| Total Lines | 14 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 17 | protected static function validRelayState(string $value, string $message = ''): void |
||
| 18 | { |
||
| 19 | parent::notWhitespaceOnly($value, $message); // Not protocol-defined, but makes zero sense |
||
| 20 | |||
| 21 | /** |
||
| 22 | * 3.4.3 RelayState |
||
| 23 | * |
||
| 24 | * The value MUST NOT exceed 80 bytes in length [..] |
||
| 25 | */ |
||
| 26 | parent::maxLength( |
||
| 27 | $value, |
||
| 28 | C::MAX_RELAY_STATE_LENGTH, |
||
| 29 | $message ?: '%s is not a SAML2.0-compliant RelayState', |
||
| 30 | ProtocolViolationException::class, |
||
| 31 | ); |
||
| 34 |
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