Here is the list of the most complex expressions used in the code. A complex expression is an expression that requires more than 20 tokens to be build.
Literal arrays are omitted.
File | Count | Expression |
---|---|---|
/src/Components/Http/ServerRequest.php:104 | 1 | $scheme = isset($_SERVER['HTTPS']) && ($_SERVER['HTTPS'] === 'on' || $_SERVER['HTTPS'] == 1) || isset($_SERVER['HTTP_X_FORWARDED_PROTO']) && $_SERVER['HTTP_X_FORWARDED_PROTO'] === 'https' ? 'https' : 'http' |
/src/Controller.php:110 | 1 | $stream_output = $stream instanceof RequestInterface && $request === null ? sprintf($text, $stream->getUri( )->getQuery( )) : sprintf($text, $request->getUri( )->getQuery( )) |