hnhdigital-os/php-linode-api

View on GitHub
src/endpoints/Linode/Instances/Ip.php

Summary

Maintainability
B
4 hrs
Test Coverage

Avoid unused parameters such as '$address'.
Open

    public function get($address)
Severity: Minor
Found in src/endpoints/Linode/Instances/Ip.php by phpmd

UnusedFormalParameter

Since: 0.2

Avoid passing parameters to methods or constructors and then not using those parameters.

Example

class Foo
{
    private function bar($howdy)
    {
        // $howdy is not used
    }
}

Source https://phpmd.org/rules/unusedcode.html#unusedformalparameter

Avoid unused parameters such as '$address'.
Open

    public function update($address, $optional = [])
Severity: Minor
Found in src/endpoints/Linode/Instances/Ip.php by phpmd

UnusedFormalParameter

Since: 0.2

Avoid passing parameters to methods or constructors and then not using those parameters.

Example

class Foo
{
    private function bar($howdy)
    {
        // $howdy is not used
    }
}

Source https://phpmd.org/rules/unusedcode.html#unusedformalparameter

Similar blocks of code found in 3 locations. Consider refactoring.
Open

<?php

namespace HnhDigital\LinodeApi\Linode\Instances;

/*
Severity: Major
Found in src/endpoints/Linode/Instances/Ip.php and 2 other locations - About 4 hrs to fix
src/endpoints/Domains/Record.php on lines 1..107
src/endpoints/Linode/Instances/Config.php on lines 1..107

Duplicated Code

Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

Tuning

This issue has a mass of 169.

We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

Refactorings

Further Reading

Avoid classes with short names like Ip. Configured minimum length is 3.
Open

class Ip extends Base
{
    /**
     * Endpoint.
     *
Severity: Minor
Found in src/endpoints/Linode/Instances/Ip.php by phpmd

ShortClassName

Since: 2.9

Detects when classes or interfaces have a very short name.

Example

class Fo {

}

interface Fo {

}

Source https://phpmd.org/rules/naming.html#shortclassname

Line exceeds 120 characters; contains 124 characters
Open

     * Deletes a public IPv4 address associated with this Linode. This will fail if it is the Linode's last remaining public

There are no issues that match your filters.

Category
Status