eveseat/installer

View on GitHub

Showing 126 of 126 total issues

The method resolve_executables is not named in camelCase.
Open

    protected function resolve_executables()
    {

        foreach ($this->executables as $exeutable => $path) {

Severity: Minor
Found in src/Commands/Install/Development.php by phpmd

CamelCaseMethodName

Since: 0.2

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

Example

class ClassName {
    public function get_name() {
    }
}

Source

The method clone_repository is not named in camelCase.
Open

    protected function clone_repository(string $repository, string $path)
    {

        $git = new GitWrapper($this->executables['git']);
        $git->setTimeout(300);
Severity: Minor
Found in src/Commands/Install/Development.php by phpmd

CamelCaseMethodName

Since: 0.2

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

Example

class ClassName {
    public function get_name() {
    }
}

Source

The method generate_encryption_key is not named in camelCase.
Open

    protected function generate_encryption_key()
    {

        chdir($this->install_directory);
        $this->runCommandWithOutput($this->executables['php'] . ' artisan key:generate', 'Encryption');
Severity: Minor
Found in src/Commands/Install/Development.php by phpmd

CamelCaseMethodName

Since: 0.2

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

Example

class ClassName {
    public function get_name() {
    }
}

Source

The method install_dependencies is not named in camelCase.
Open

    protected function install_dependencies()
    {

        chdir($this->install_directory);

Severity: Minor
Found in src/Commands/Install/Development.php by phpmd

CamelCaseMethodName

Since: 0.2

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

Example

class ClassName {
    public function get_name() {
    }
}

Source

TODO found
Open

        // TODO: Validate that we have the needed keys.
Severity: Minor
Found in src/Utils/Seat.php by fixme

TODO found
Open

        // TODO: Implement harden() method.
Severity: Minor
Found in src/Utils/Nginx.php by fixme
Severity
Category
Status
Source
Language