Showing 44 of 44 total issues
Method phpize
has 28 lines of code (exceeds 25 allowed). Consider refactoring. Open
protected function phpize($value)
{
$value = (string) $value;
$lowercaseValue = \strtolower($value);
Method createService
has 27 lines of code (exceeds 25 allowed). Consider refactoring. Open
public function createService(string $name, array $args = [])
{
$name = $this->aliases[$name] ?? $name;
$method = self::getMethodName($name);
$cb = $this->methods[$method] ?? null;
Method createInstance
has 27 lines of code (exceeds 25 allowed). Consider refactoring. Open
public function createInstance(string $class, array $args = [])
{
try {
$reflector = new \ReflectionClass($class);
} catch (\ReflectionException $e) {
Method autowireArguments
has 27 lines of code (exceeds 25 allowed). Consider refactoring. Open
public static function autowireArguments(
ReflectionFunctionAbstract $method,
array $arguments,
callable $getter
): array {
Function autowireArguments
has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring. Open
public static function autowireArguments(
ReflectionFunctionAbstract $method,
array $arguments,
callable $getter
): array {
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Function make
has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring. Open
public function make(string $alias, ...$parameters)
{
try {
return $this->getService($alias);
} catch (MissingServiceException $e) {
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Function setParameter
has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring. Open
public function setParameter(string $name, $value): void
{
if (\strpos($name, '.') !== false) {
$parameters = &$this->parameters;
$keys = \explode('.', $name);
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Function removeParameter
has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring. Open
public function removeParameter(string $name): void
{
if ($this->hasParameter($name)) {
unset($this->parameters[$name]);
} elseif (\strpos($name, '.') !== false) {
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Avoid deeply nested control flow statements. Open
if (!\is_array($this->getParameter($key))) {
$nonNestedAlternative = $key;
throw new ParameterNotFoundException(
$name,
Function addService
has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring. Open
public function addService(string $name, $service)
{
$service = null === $service ? $name : $service;
$name = $this->aliases[$name] ?? $name;
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Function runScope
has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring. Open
public function runScope(array $bindings, callable $scope)
{
$cleanup = $previous = [];
foreach ($bindings as $alias => $resolver) {
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Function getPanel
has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring. Open
public function getPanel(): string
{
$rc = new ReflectionClass($this->container);
$tags = [];
$types = [];
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Avoid too many return
statements within this method. Open
return (string) \bindec($value);
Avoid too many return
statements within this method. Open
return $array;
Avoid too many return
statements within this method. Open
return \hexdec($value);
Avoid too many return
statements within this method. Open
return $value;
Avoid too many return
statements within this method. Open
return '0x' === $value[0] . $value[1] ? \hexdec($value) : (float) $value;
Avoid too many return
statements within this method. Open
return \hexdec($value);
Avoid too many return
statements within this method. Open
return \bindec($value);
Avoid too many return
statements within this method. Open
return (string) (float) $value;