bnomei/kirby3-autoid

View on GitHub

Showing 18 of 18 total issues

Function index has a Cognitive Complexity of 20 (exceeds 5 allowed). Consider refactoring.
Open

    public static function index(bool $force = false, ?Page $root = null): int
    {
        if (static::$didIndexOnce) {
            return static::$didIndexOnce;
        }
Severity: Minor
Found in classes/AutoID.php - About 2 hrs 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 modified has a Cognitive Complexity of 15 (exceeds 5 allowed). Consider refactoring.
Open

    public static function modified($autoid)
    {
        if (is_string($autoid) || is_a($autoid, Field::class)) {
            return AutoIDDatabase::singleton()->modified($autoid);
        }
Severity: Minor
Found in classes/AutoID.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 autoid has a Cognitive Complexity of 14 (exceeds 5 allowed). Consider refactoring.
Open

    function autoid($obj = \Bnomei\AutoID::GENERATE)
    {
        \Bnomei\AutoID::index();

        if ($obj === \Bnomei\AutoID::GENERATE) {
Severity: Minor
Found in index.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 index has 41 lines of code (exceeds 25 allowed). Consider refactoring.
Open

    public static function index(bool $force = false, ?Page $root = null): int
    {
        if (static::$didIndexOnce) {
            return static::$didIndexOnce;
        }
Severity: Minor
Found in classes/AutoID.php - About 1 hr to fix

    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 modified has 33 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

        public static function modified($autoid)
        {
            if (is_string($autoid) || is_a($autoid, Field::class)) {
                return AutoIDDatabase::singleton()->modified($autoid);
            }
    Severity: Minor
    Found in classes/AutoID.php - About 1 hr to fix

      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

        Avoid too many return statements within this method.
        Open

                        return $item->modified();
        Severity: Major
        Found in classes/AutoID.php - About 30 mins to fix

          Avoid too many return statements within this method.
          Open

                      return count($maxModified) > 0 ? max($maxModified) : null;
          Severity: Major
          Found in classes/AutoID.php - About 30 mins to fix

            Avoid too many return statements within this method.
            Open

                    return null;
            Severity: Major
            Found in classes/AutoID.php - About 30 mins to fix

              Avoid too many return statements within this method.
              Open

                          return $autoid->modified();
              Severity: Major
              Found in classes/AutoID.php - About 30 mins to fix

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

                    public function next(): \Generator
                    {
                        $next = $this->root;
                        while($next) {
                            yield $next;
                Severity: Minor
                Found in classes/AutoIDIndexer.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 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

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

                    public static function find($autoid)
                    {
                        // self::index(); // NOTE: would cause loop
                        $find = AutoIDDatabase::singleton()->find($autoid);
                        if (! $find) {
                Severity: Minor
                Found in classes/AutoID.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 generate has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
                Open

                    public static function generate(): ?string
                    {
                        $generator = option('bnomei.autoid.generator');
                        if (is_callable($generator)) {
                            $break = intval(option('bnomei.autoid.generator-break'));
                Severity: Minor
                Found in classes/AutoID.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