mimmi20/mezzio-navigation

View on GitHub

Showing 12 of 12 total issues

Function factory has a Cognitive Complexity of 18 (exceeds 5 allowed). Consider refactoring.
Open

    public function factory(array $options): PageInterface
    {
        if (isset($options['type'])) {
            $type = $options['type'];

Severity: Minor
Found in src/Page/PageFactory.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

Method factory has 46 lines of code (exceeds 25 allowed). Consider refactoring.
Open

    public function factory(array $options): PageInterface
    {
        if (isset($options['type'])) {
            $type = $options['type'];

Severity: Minor
Found in src/Page/PageFactory.php - About 1 hr to fix

    Function isActive has a Cognitive Complexity of 14 (exceeds 5 allowed). Consider refactoring.
    Open

        public function isActive(bool $recursive = false): bool
        {
            if ($this->active === null) {
                $reqParams  = [];
                $pageParams = $this->getParams();
    Severity: Minor
    Found in src/Page/Route.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 getHref has 36 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

        public function getHref(): string
        {
            if ($this->hrefCache) {
                return $this->hrefCache;
            }
    Severity: Minor
    Found in src/Page/Route.php - About 1 hr to fix

      Function hasPage has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
      Open

          final public function hasPage(int | PageInterface $page, bool $recursive = false): bool
          {
              if ($page instanceof PageInterface) {
                  $hash = $page->hashCode();
              } else {
      Severity: Minor
      Found in src/ContainerTrait.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 removePage has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
      Open

          final public function removePage(int | PageInterface $page, bool $recursive = false): bool
          {
              if ($page instanceof PageInterface) {
                  $hash = $page->hashCode();
              } else {
      Severity: Minor
      Found in src/ContainerTrait.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 preparePages has 29 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

          private function preparePages(
              array $pages,
              PageFactoryInterface $factory,
              RouteResult | null $routeResult = null,
              RouterInterface | null $router = null,
      Severity: Minor
      Found in src/Service/NavigationFactoryTrait.php - About 1 hr to fix

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

            public function isActive(bool $recursive = false): bool
            {
                if ($this->active === null) {
                    $reqParams  = [];
                    $pageParams = $this->getParams();
        Severity: Minor
        Found in src/Page/Route.php - About 1 hr to fix

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

              public function getHref(): string
              {
                  if ($this->hrefCache) {
                      return $this->hrefCache;
                  }
          Severity: Minor
          Found in src/Page/Route.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

          Method preparePages has 5 arguments (exceeds 4 allowed). Consider refactoring.
          Open

                  array $pages,
                  PageFactoryInterface $factory,
                  RouteResult | null $routeResult = null,
                  RouterInterface | null $router = null,
                  ServerRequestInterface | null $request = null,
          Severity: Minor
          Found in src/Service/NavigationFactoryTrait.php - About 35 mins to fix

            Function isActive has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
            Open

                public function isActive(bool $recursive = false): bool
                {
                    if ($this->active === null && $recursive) {
                        foreach ($this->pages as $page) {
                            if ($page->isActive(true)) {
            Severity: Minor
            Found in src/Page/PageTrait.php - About 35 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 hasPages has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
            Open

                final public function hasPages(bool $onlyVisible = false): bool
                {
                    if ($onlyVisible) {
                        foreach ($this->pages as $page) {
                            assert($page instanceof PageInterface);
            Severity: Minor
            Found in src/ContainerTrait.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