Showing 28 of 30 total issues
Function findByID
has a Cognitive Complexity of 73 (exceeds 5 allowed). Consider refactoring. Open
public function findByID(string $id, bool $cache = true, bool $extend = true): ?Page
{
$page = $this->lookup($id, $cache);
if ($page) {
- 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 boost
has a Cognitive Complexity of 29 (exceeds 5 allowed). Consider refactoring. Open
function boost($id)
{
if (! $id || ! option('bnomei.boost.helper')) {
return null;
}
- 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
File index.php
has 326 lines of code (exceeds 250 allowed). Consider refactoring. Open
<?php
use Bnomei\Bolt;
use Bnomei\BoostCache;
use Bnomei\BoostDirInventory;
Method findByID
has 95 lines of code (exceeds 25 allowed). Consider refactoring. Open
public function findByID(string $id, bool $cache = true, bool $extend = true): ?Page
{
$page = $this->lookup($id, $cache);
if ($page) {
Function find
has a Cognitive Complexity of 18 (exceeds 5 allowed). Consider refactoring. Open
public function find(string $uuid, bool $throwException = true): ?Page
{
$uuid = str_replace('page://', '', trim($uuid));
$diruri = $this->diruri($uuid);
- 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 index
has a Cognitive Complexity of 15 (exceeds 5 allowed). Consider refactoring. Open
public function index(bool $force = false, ?Page $target = null): int
{
$count = $this->index ? count($this->index) : 0;
if ($count > 0 && ! $force) {
- 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 modified
has a Cognitive Complexity of 13 (exceeds 5 allowed). Consider refactoring. Open
public static function modified($model): ?int
{
if ($model instanceof \Kirby\Cms\Page ||
$model instanceof \Kirby\Cms\File ||
$model instanceof \Kirby\Cms\User) {
- 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 run
has 36 lines of code (exceeds 25 allowed). Consider refactoring. Open
public static function run(array $caches = [], int $seconds = 1, $count = 1000, $contentLength = 128, $writeRatio = 0.1): array
{
$caches = $caches ?? [BoostCache::file()];
$benchmarks = [];
Method boost
has 36 lines of code (exceeds 25 allowed). Consider refactoring. Open
function boost($id)
{
if (! $id || ! option('bnomei.boost.helper')) {
return null;
}
Method benchmark
has 35 lines of code (exceeds 25 allowed). Consider refactoring. Open
private static function benchmark($cache, int $seconds = 1, $count = 1000, $contentLength = 128, $writeRatio = 0.1): array
{
if (is_callable([$cache, 'beginTransaction'])) {
$cache->beginTransaction();
}
Function benchmark
has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring. Open
private static function benchmark($cache, int $seconds = 1, $count = 1000, $contentLength = 128, $writeRatio = 0.1): array
{
if (is_callable([$cache, 'beginTransaction'])) {
$cache->beginTransaction();
}
- 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 patchDirClass
has 31 lines of code (exceeds 25 allowed). Consider refactoring. Open
public static function patchDirClass(): void
{
$reflection = new ReflectionClass(Dir::class);
$file = $reflection->getFileName();
Function lookup
has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring. Open
public function lookup(string $id, bool $cache = true): ?Page
{
$lookup = A::get(self::$idToPage, $id);
// in case the page was deleted/moved
- 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 modified
has 27 lines of code (exceeds 25 allowed). Consider refactoring. Open
public static function modified($model): ?int
{
if ($model instanceof \Kirby\Cms\Page ||
$model instanceof \Kirby\Cms\File ||
$model instanceof \Kirby\Cms\User) {
Method load
has 27 lines of code (exceeds 25 allowed). Consider refactoring. Open
public static function load(): ?Kirby\Cms\Pages
{
// if cached then return that
if (static::$cache) {
return static::$cache;
Method find
has 26 lines of code (exceeds 25 allowed). Consider refactoring. Open
public function find(string $uuid, bool $throwException = true): ?Page
{
$uuid = str_replace('page://', '', trim($uuid));
$diruri = $this->diruri($uuid);
Method benchmark
has 5 arguments (exceeds 4 allowed). Consider refactoring. Open
private static function benchmark($cache, int $seconds = 1, $count = 1000, $contentLength = 128, $writeRatio = 0.1): array
Method run
has 5 arguments (exceeds 4 allowed). Consider refactoring. Open
public static function run(array $caches = [], int $seconds = 1, $count = 1000, $contentLength = 128, $writeRatio = 0.1): array
Function patchFilesClass
has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring. Open
public static function patchFilesClass()
{
if (option('bnomei.boost.patch.files')) {
$filesClass = kirby()->roots()->kirby().'/src/Cms/Files.php';
if (F::exists($filesClass) && F::isWritable($filesClass)) {
- 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
Avoid too many return
statements within this method. Open
return $page;