src/Lud/Press/PressIndex.php
Method build
has 41 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
protected function build($forceRebuild = false)
{
if (null !== $this->ramCache && !$forceRebuild) {
return $this->ramCache;
}
Method makeReduce
has 33 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
private function makeReduce($name, $value)
{
switch ($name) {
case 'all':
return function(Collection $collection) {
Function build
has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring. Open
Open
protected function build($forceRebuild = false)
{
if (null !== $this->ramCache && !$forceRebuild) {
return $this->ramCache;
}
- 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
Open
return function(Collection $collection) {
return $collection->count();
};
Avoid too many return
statements within this method. Open
Open
return $this->ramCache;
Avoid too many return
statements within this method. Open
Open
return function(Collection $collection) use ($value) {
return $collection->filter(function($meta) use ($value) {
return starts_with($meta->rel_path, $value);
});
};