Showing 7 of 7 total issues
Function integrity
has a Cognitive Complexity of 13 (exceeds 5 allowed). Consider refactoring. Open
public function integrity(?string $digest = null, ?string $manifest = null): ?string
{
$root = $this->fileRoot();
if (is_string($manifest) && F::exists($manifest)) {
- 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 hash
has 38 lines of code (exceeds 25 allowed). Consider refactoring. Open
public function hash($query = true): string
{
$root = $this->fileRoot();
$filename = null;
Function hash
has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring. Open
public function hash($query = true): string
{
$root = $this->fileRoot();
$filename = 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
Method integrity
has 33 lines of code (exceeds 25 allowed). Consider refactoring. Open
public function integrity(?string $digest = null, ?string $manifest = null): ?string
{
$root = $this->fileRoot();
if (is_string($manifest) && F::exists($manifest)) {
Function attrs
has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring. Open
public function attrs(array $attrs, array $lookup)
{
$sri = A::get($attrs, 'integrity', false);
if ($sri === true) {
$sri = A::get($lookup, 'integrity');
- 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 7 (exceeds 5 allowed). Consider refactoring. Open
public function __construct(array $options = [])
{
$defaults = [
'debug' => option('debug'),
'query' => option('bnomei.fingerprint.query'),
- 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 7 (exceeds 5 allowed). Consider refactoring. Open
public function modified(): ?int
{
$root = $this->fileRoot();
if (!F::exists($root)) {
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"