bnomei/kirby3-autoid

View on GitHub
classes/AutoIDProcess.php

Summary

Maintainability
B
6 hrs
Test Coverage

Function indexArray has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring.
Open

    private function indexArray(array $data, array $tree = []): array
    {
        $copy = $data;
        foreach ($data as $key => $value) {
            if ($key === AutoID::FIELDNAME) {
Severity: Minor
Found in classes/AutoIDProcess.php - About 1 hr 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 indexStructures has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring.
Open

    private function indexStructures(): void
    {
        $data = [];

        foreach ($this->object->blueprint()->fields() as $field) {
Severity: Minor
Found in classes/AutoIDProcess.php - About 1 hr 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

Method __construct has 27 lines of code (exceeds 25 allowed). Consider refactoring.
Open

    public function __construct($object, bool $overwrite = false)
    {
        if (is_a($object, Page::class)) {
            foreach ($object->files() as $file) {
                new self($file, $overwrite);
Severity: Minor
Found in classes/AutoIDProcess.php - About 1 hr to fix

    Function __construct has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
    Open

        public function __construct($object, bool $overwrite = false)
        {
            if (is_a($object, Page::class)) {
                foreach ($object->files() as $file) {
                    new self($file, $overwrite);
    Severity: Minor
    Found in classes/AutoIDProcess.php - About 55 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 indexPageOrFile has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
    Open

        private function indexPageOrFile(): void
        {
            $autoid = null;
    
            if ($this->object->{AutoID::FIELDNAME}()->isNotEmpty()) {
    Severity: Minor
    Found in classes/AutoIDProcess.php - About 55 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 createItem has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
    Open

        private function createItem(string $autoid, array $tree = null): AutoIDItem
        {
            if (is_array($tree) && (
                    is_a($this->object, Page::class) ||
                    is_a($this->object, File::class) ||
    Severity: Minor
    Found in classes/AutoIDProcess.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

    There are no issues that match your filters.

    Category
    Status