Showing 209 of 326 total issues
Avoid too many return
statements within this method. Open
return $image;
Avoid too many return
statements within this method. Open
return $image->toArray();
Avoid too many return
statements within this method. Open
return true;
Avoid too many return
statements within this method. Open
return $sourceNavItem->copyTypeContent($navItem);
Avoid too many return
statements within this method. Open
return false;
Avoid too many return
statements within this method. Open
return "{$title} (" .$block->droppedPageTitle. ")";
Avoid too many return
statements within this method. Open
return $this->sendModelError($typeModel);
Avoid too many return
statements within this method. Open
return true;
Avoid too many return
statements within this method. Open
return [
'item' => $model,
'typeData' => ($model->nav_item_type == 1) ? NavItemPage::getVersionList($model->id) : $model->getType()->toArray()
];
Avoid too many return
statements within this method. Open
return $arr['blockName'] . " ({$arr['pageTitle']})";
Avoid too many return
statements within this method. Open
return $this->sendModelError($typeModel);
Avoid too many return
statements within this method. Open
return $this->renderContent($content);
Avoid too many return
statements within this method. Open
return false;
Avoid too many return
statements within this method. Open
return $converter->getTelephoneLink($converter->value)->getHref();
Avoid too many return
statements within this method. Open
return Yii::$app->urlManager->prependBaseUrl('');
Avoid too many return
statements within this method. Open
return $link;
Avoid too many return
statements within this method. Open
return $converter->getFileLink($converter->value, $converter->target)->getHref();
Function matchRequestPath
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Open
public function matchRequestPath($requestPath): bool|string
{
foreach ([$requestPath, urlencode($requestPath), urldecode($requestPath)] as $path) {
foreach ([$this->catch_path, urlencode($this->catch_path), urldecode($this->catch_path)] as $catch) {
if ($response = $this->pathMatcher($path, $catch)) {
- 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 createPage
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Open
public function createPage($parentNavId, $navContainerId, $langId, $title, $alias, $layoutId, $description, $isDraft = false): array|int
{
$_errors = [];
$nav = $this;
- 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 moduleContent
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Open
public function moduleContent($moduleName)
{
if ($this->isAdminContext() || empty($moduleName) || count($this->getEnvOptions()) === 0 || !Yii::$app->hasModule($moduleName)) {
return;
}
- 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"