src/ast/stmt/BlockStmt.php

Summary

Maintainability
A
0 mins
Test Coverage

The parameter $parent_scope is not named in camelCase.
Open

    public function injectScope($parent_scope)
    {
        $this->scope = new Scope($parent_scope);
        return $this->body->injectScope($this->scope);
    }
Severity: Minor
Found in src/ast/stmt/BlockStmt.php by phpmd

CamelCaseParameterName

Since: 0.2

It is considered best practice to use the camelCase notation to name parameters.

Example

class ClassName {
    public function doSomething($user_name) {
    }
}

Source

The variable $parent_scope is not named in camelCase.
Open

    public function injectScope($parent_scope)
    {
        $this->scope = new Scope($parent_scope);
        return $this->body->injectScope($this->scope);
    }
Severity: Minor
Found in src/ast/stmt/BlockStmt.php by phpmd

CamelCaseVariableName

Since: 0.2

It is considered best practice to use the camelCase notation to name variables.

Example

class ClassName {
    public function doSomething() {
        $data_module = new DataModule();
    }
}

Source

There are no issues that match your filters.

Category
Status