hnhdigital-os/php-virtualmin-api

View on GitHub

Showing 137 of 137 total issues

The method enableLogRotate has a boolean flag argument $user, which is a certain sign of a Single Responsibility Principle violation.
Open

    public function enableLogRotate($domain = false, $user = false)
Severity: Minor
Found in src/VirtualServersClient.php by phpmd

BooleanArgumentFlag

Since: 1.4.0

A boolean flag argument is a reliable indicator for a violation of the Single Responsibility Principle (SRP). You can fix this problem by extracting the logic in the boolean flag into its own class or method.

Example

class Foo {
    public function bar($flag = true) {
    }
}

Source https://phpmd.org/rules/cleancode.html#booleanargumentflag

The method enableDir has a boolean flag argument $user, which is a certain sign of a Single Responsibility Principle violation.
Open

    public function enableDir($domain = false, $user = false)
Severity: Minor
Found in src/VirtualServersClient.php by phpmd

BooleanArgumentFlag

Since: 1.4.0

A boolean flag argument is a reliable indicator for a violation of the Single Responsibility Principle (SRP). You can fix this problem by extracting the logic in the boolean flag into its own class or method.

Example

class Foo {
    public function bar($flag = true) {
    }
}

Source https://phpmd.org/rules/cleancode.html#booleanargumentflag

The method disableLogFtp has a boolean flag argument $user, which is a certain sign of a Single Responsibility Principle violation.
Open

    public function disableLogFtp($domain = false, $user = false)
Severity: Minor
Found in src/VirtualServersClient.php by phpmd

BooleanArgumentFlag

Since: 1.4.0

A boolean flag argument is a reliable indicator for a violation of the Single Responsibility Principle (SRP). You can fix this problem by extracting the logic in the boolean flag into its own class or method.

Example

class Foo {
    public function bar($flag = true) {
    }
}

Source https://phpmd.org/rules/cleancode.html#booleanargumentflag

The method enableSpam has a boolean flag argument $domain, which is a certain sign of a Single Responsibility Principle violation.
Open

    public function enableSpam($domain = false, $user = false)
Severity: Minor
Found in src/VirtualServersClient.php by phpmd

BooleanArgumentFlag

Since: 1.4.0

A boolean flag argument is a reliable indicator for a violation of the Single Responsibility Principle (SRP). You can fix this problem by extracting the logic in the boolean flag into its own class or method.

Example

class Foo {
    public function bar($flag = true) {
    }
}

Source https://phpmd.org/rules/cleancode.html#booleanargumentflag

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

            throw new \Exception('Failed to connect - '.$exception->getMessage());
Severity: Minor
Found in src/VirtualminClient.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 '71', column '23').
Open

            throw new \Exception($result['error']);
Severity: Minor
Found in src/VirtualminClient.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

The method disableUnix has a boolean flag argument $domain, which is a certain sign of a Single Responsibility Principle violation.
Open

    public function disableUnix($domain = false, $user = false)
Severity: Minor
Found in src/VirtualServersClient.php by phpmd

BooleanArgumentFlag

Since: 1.4.0

A boolean flag argument is a reliable indicator for a violation of the Single Responsibility Principle (SRP). You can fix this problem by extracting the logic in the boolean flag into its own class or method.

Example

class Foo {
    public function bar($flag = true) {
    }
}

Source https://phpmd.org/rules/cleancode.html#booleanargumentflag

The method disableDns has a boolean flag argument $user, which is a certain sign of a Single Responsibility Principle violation.
Open

    public function disableDns($domain = false, $user = false)
Severity: Minor
Found in src/VirtualServersClient.php by phpmd

BooleanArgumentFlag

Since: 1.4.0

A boolean flag argument is a reliable indicator for a violation of the Single Responsibility Principle (SRP). You can fix this problem by extracting the logic in the boolean flag into its own class or method.

Example

class Foo {
    public function bar($flag = true) {
    }
}

Source https://phpmd.org/rules/cleancode.html#booleanargumentflag

The method enableMail has a boolean flag argument $user, which is a certain sign of a Single Responsibility Principle violation.
Open

    public function enableMail($domain = false, $user = false)
Severity: Minor
Found in src/VirtualServersClient.php by phpmd

BooleanArgumentFlag

Since: 1.4.0

A boolean flag argument is a reliable indicator for a violation of the Single Responsibility Principle (SRP). You can fix this problem by extracting the logic in the boolean flag into its own class or method.

Example

class Foo {
    public function bar($flag = true) {
    }
}

Source https://phpmd.org/rules/cleancode.html#booleanargumentflag

The method enableSvn has a boolean flag argument $user, which is a certain sign of a Single Responsibility Principle violation.
Open

    public function enableSvn($domain = false, $user = false)
Severity: Minor
Found in src/VirtualServersClient.php by phpmd

BooleanArgumentFlag

Since: 1.4.0

A boolean flag argument is a reliable indicator for a violation of the Single Responsibility Principle (SRP). You can fix this problem by extracting the logic in the boolean flag into its own class or method.

Example

class Foo {
    public function bar($flag = true) {
    }
}

Source https://phpmd.org/rules/cleancode.html#booleanargumentflag

The method disableMail has a boolean flag argument $user, which is a certain sign of a Single Responsibility Principle violation.
Open

    public function disableMail($domain = false, $user = false)
Severity: Minor
Found in src/VirtualServersClient.php by phpmd

BooleanArgumentFlag

Since: 1.4.0

A boolean flag argument is a reliable indicator for a violation of the Single Responsibility Principle (SRP). You can fix this problem by extracting the logic in the boolean flag into its own class or method.

Example

class Foo {
    public function bar($flag = true) {
    }
}

Source https://phpmd.org/rules/cleancode.html#booleanargumentflag

The method enableWebalizer has a boolean flag argument $domain, which is a certain sign of a Single Responsibility Principle violation.
Open

    public function enableWebalizer($domain = false, $user = false)
Severity: Minor
Found in src/VirtualServersClient.php by phpmd

BooleanArgumentFlag

Since: 1.4.0

A boolean flag argument is a reliable indicator for a violation of the Single Responsibility Principle (SRP). You can fix this problem by extracting the logic in the boolean flag into its own class or method.

Example

class Foo {
    public function bar($flag = true) {
    }
}

Source https://phpmd.org/rules/cleancode.html#booleanargumentflag

The method enableVirus has a boolean flag argument $user, which is a certain sign of a Single Responsibility Principle violation.
Open

    public function enableVirus($domain = false, $user = false)
Severity: Minor
Found in src/VirtualServersClient.php by phpmd

BooleanArgumentFlag

Since: 1.4.0

A boolean flag argument is a reliable indicator for a violation of the Single Responsibility Principle (SRP). You can fix this problem by extracting the logic in the boolean flag into its own class or method.

Example

class Foo {
    public function bar($flag = true) {
    }
}

Source https://phpmd.org/rules/cleancode.html#booleanargumentflag

The method disableSpam has a boolean flag argument $user, which is a certain sign of a Single Responsibility Principle violation.
Open

    public function disableSpam($domain = false, $user = false)
Severity: Minor
Found in src/VirtualServersClient.php by phpmd

BooleanArgumentFlag

Since: 1.4.0

A boolean flag argument is a reliable indicator for a violation of the Single Responsibility Principle (SRP). You can fix this problem by extracting the logic in the boolean flag into its own class or method.

Example

class Foo {
    public function bar($flag = true) {
    }
}

Source https://phpmd.org/rules/cleancode.html#booleanargumentflag

The method enableUnix has a boolean flag argument $user, which is a certain sign of a Single Responsibility Principle violation.
Open

    public function enableUnix($domain = false, $user = false)
Severity: Minor
Found in src/VirtualServersClient.php by phpmd

BooleanArgumentFlag

Since: 1.4.0

A boolean flag argument is a reliable indicator for a violation of the Single Responsibility Principle (SRP). You can fix this problem by extracting the logic in the boolean flag into its own class or method.

Example

class Foo {
    public function bar($flag = true) {
    }
}

Source https://phpmd.org/rules/cleancode.html#booleanargumentflag

The method enableLogRotate has a boolean flag argument $domain, which is a certain sign of a Single Responsibility Principle violation.
Open

    public function enableLogRotate($domain = false, $user = false)
Severity: Minor
Found in src/VirtualServersClient.php by phpmd

BooleanArgumentFlag

Since: 1.4.0

A boolean flag argument is a reliable indicator for a violation of the Single Responsibility Principle (SRP). You can fix this problem by extracting the logic in the boolean flag into its own class or method.

Example

class Foo {
    public function bar($flag = true) {
    }
}

Source https://phpmd.org/rules/cleancode.html#booleanargumentflag

The method enableStatus has a boolean flag argument $domain, which is a certain sign of a Single Responsibility Principle violation.
Open

    public function enableStatus($domain = false, $user = false)
Severity: Minor
Found in src/VirtualServersClient.php by phpmd

BooleanArgumentFlag

Since: 1.4.0

A boolean flag argument is a reliable indicator for a violation of the Single Responsibility Principle (SRP). You can fix this problem by extracting the logic in the boolean flag into its own class or method.

Example

class Foo {
    public function bar($flag = true) {
    }
}

Source https://phpmd.org/rules/cleancode.html#booleanargumentflag

The method disableDns has a boolean flag argument $domain, which is a certain sign of a Single Responsibility Principle violation.
Open

    public function disableDns($domain = false, $user = false)
Severity: Minor
Found in src/VirtualServersClient.php by phpmd

BooleanArgumentFlag

Since: 1.4.0

A boolean flag argument is a reliable indicator for a violation of the Single Responsibility Principle (SRP). You can fix this problem by extracting the logic in the boolean flag into its own class or method.

Example

class Foo {
    public function bar($flag = true) {
    }
}

Source https://phpmd.org/rules/cleancode.html#booleanargumentflag

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

            throw new \Exception(json_last_error_msg());
Severity: Minor
Found in src/VirtualminClient.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

The method disableStatus has a boolean flag argument $domain, which is a certain sign of a Single Responsibility Principle violation.
Open

    public function disableStatus($domain = false, $user = false)
Severity: Minor
Found in src/VirtualServersClient.php by phpmd

BooleanArgumentFlag

Since: 1.4.0

A boolean flag argument is a reliable indicator for a violation of the Single Responsibility Principle (SRP). You can fix this problem by extracting the logic in the boolean flag into its own class or method.

Example

class Foo {
    public function bar($flag = true) {
    }
}

Source https://phpmd.org/rules/cleancode.html#booleanargumentflag

Severity
Category
Status
Source
Language