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'];
- 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
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'];
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();
- 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
Method getHref
has 36 lines of code (exceeds 25 allowed). Consider refactoring. Open
public function getHref(): string
{
if ($this->hrefCache) {
return $this->hrefCache;
}
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 {
- 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 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 {
- 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
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,
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();
Function getHref
has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring. Open
public function getHref(): string
{
if ($this->hrefCache) {
return $this->hrefCache;
}
- 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
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,
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)) {
- 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 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);
- 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"