File Path.php
has 254 lines of code (exceeds 250 allowed). Consider refactoring. Open
<?php
declare(strict_types=1);
namespace Async\Path;
Function file_get
has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring. Open
function file_get(string $filename)
{
$fd = yield file_open($filename, 'r');
if (\is_resource($fd)) {
if (file_meta($fd, 'wrapper_type') === 'http') {
- 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 _fopen
has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring. Open
function _fopen(string $path = null, string $flag = 'r', int $mode = \S_IRWXU, $contexts = null)
{
$retry = 0;
while (true) {
$fd = yield FileSystem::open($path, $flag, $mode, $contexts);
- 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 file_delete
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Open
function file_delete($dir)
{
$dir = slash_switch($dir);
// @codeCoverageIgnoreStart
- 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"