mheinzerling/php-simpleweb

View on GitHub

Showing 5 of 5 total issues

Function handle has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
Open

    public function handle(callable $onValid)
    {
        if ($this->isSubmitted()) throw new \Exception("Called handle() twice");
        if (SimpleRequest::hasPost($this->getName())) {
            $this->submitted = true;
Severity: Minor
Found in src/form/Form.php - About 55 mins to fix

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 handle has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
Open

    public function handle(): void
    {
        if (isset($this->resources[$this->request])) {
            $page = $this->resources[$this->request];
            if (!$page->accessAllowed()) throw new ForbiddenException($page);
Severity: Minor
Found in src/router/SimpleRouter.php - About 55 mins to fix

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

Missing class import via use statement (line '39', column '39').
Open

        if (!$validContext) throw new \Exception("Context must start and end with / .");
Severity: Minor
Found in src/router/SimpleRouter.php by phpmd

MissingImport

Since: 2.7.0

Importing all external classes in a file through use statements makes them clearly visible.

Example

function make() {
    return new \stdClass();
}

Source http://phpmd.org/rules/cleancode.html#MissingImport

Missing class import via use statement (line '38', column '45').
Open

        if ($this->isSubmitted()) throw new \Exception("Called handle() twice");
Severity: Minor
Found in src/form/Form.php by phpmd

MissingImport

Since: 2.7.0

Importing all external classes in a file through use statements makes them clearly visible.

Example

function make() {
    return new \stdClass();
}

Source http://phpmd.org/rules/cleancode.html#MissingImport

Missing class import via use statement (line '82', column '66').
Open

        if ((StringUtils::startsWith($resource, "/"))) throw new \Exception("Relative resource path to context expected.");
Severity: Minor
Found in src/router/SimpleRouter.php by phpmd

MissingImport

Since: 2.7.0

Importing all external classes in a file through use statements makes them clearly visible.

Example

function make() {
    return new \stdClass();
}

Source http://phpmd.org/rules/cleancode.html#MissingImport

Severity
Category
Status
Source
Language