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;
}
- 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 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);
}
- 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 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) {
- 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 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;
}
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) {
- 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 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) {
- 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 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);
}
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);
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()) {
- 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 __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);
- 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 $autoid->modified();
Avoid too many return
statements within this method. Open
return count($maxModified) > 0 ? max($maxModified) : null;
Avoid too many return
statements within this method. Open
return null;
Avoid too many return
statements within this method. Open
return $item->modified();
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) {
- 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 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) ||
- 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 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'));
- 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 next
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Open
public function next(): \Generator
{
$next = $this->root;
while($next) {
yield $next;
- 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"