Showing 68 of 82 total issues

Function preloadPaths has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
Open

    private function preloadPaths(RepositoryInterface $config, CompilerInterface $compiler): void
    {
        [$paths, $extensions] = [
            (array)$config->get(RepositoryInterface::KEY_PRELOAD_PATHS, []),
            (array)$config->get(RepositoryInterface::KEY_PRELOAD_EXTENSIONS, []),
Severity: Minor
Found in src/Foundation/Application/CompilerExtension.php - About 25 mins to fix

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 buildArguments has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
Open

    private function buildArguments(HasArguments $arguments): array
    {
        $result = [];

        foreach ($arguments->getArguments() as $argument) {
Severity: Minor
Found in src/Foundation/Webonyx/Builder/FieldBuilder.php - About 25 mins to fix

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 buildList has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
Open

    private function buildList(NodeInterface $ast): bool
    {
        $this->isList = true;

        foreach ($ast->getChildren() as $child) {
Severity: Minor
Found in src/SDL/Reflection/Builder/Behavior/TypeIndicationBuilder.php - About 25 mins to fix

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 isUnionContainsInterface has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
Open

    private function isUnionContainsInterface(UnionDefinition $union, TypeDefinition $object): bool
    {
        if ($object instanceof ObjectDefinition) {
            foreach ($object->getInterfaces() as $interface) {
                if ($union->hasType($interface->getName())) {
Severity: Minor
Found in src/SDL/Reflection/Validation/Inheritance/UnionValidator.php - About 25 mins to fix

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 analyzeRequest has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
Open

    private static function analyzeRequest(DocumentNode $ast, string $operation = null): array
    {
        /** @var OperationDefinitionNode $node */
        foreach ($ast->definitions as $node) {
            if ($node->kind === 'OperationDefinition') {
Severity: Minor
Found in src/Foundation/Webonyx/Executor/RequestResolver.php - About 25 mins to fix

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 iteratorToString has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
Open

    private function iteratorToString($iterator, int $depth): string
    {
        $parts = [];

        foreach ($iterator as $i => $item) {
Severity: Minor
Found in src/SDL/Runtime/CallStackRenderer/PhpTraceRenderer.php - About 25 mins to fix

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 getSchema has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
Open

    public function getSchema(): ?SchemaDefinition
    {
        if ($this->schema === null) {
            foreach ($this->types as $type) {
                if ($type instanceof SchemaDefinition) {
Severity: Minor
Found in src/SDL/Base/BaseDocument.php - About 25 mins to fix

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 load has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
Open

    private function load(string $name, Definition $from = null): TypeDefinition
    {
        foreach ($this->loaders as $loader) {
            $result = $this->parseResult($loader($name, $from));

Severity: Minor
Found in src/SDL/Reflection/Loader.php - About 25 mins to fix

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

Severity
Category
Status
Source
Language