jimmerioles/bitcoin-currency-converter-php

View on GitHub

Showing 4 of 4 total issues

Avoid using undefined variables such as '$exchangeRatesArray' which will lead to PHP notices.
Open

        return $exchangeRatesArray;
Severity: Minor
Found in src/Provider/CoindeskProvider.php by phpmd

UndefinedVariable

Since: 2.8.0

Detects when a variable is used that has not been defined before.

Example

class Foo
{
    private function bar()
    {
        // $message is undefined
        echo $message;
    }
}

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

Avoid using undefined variables such as '$exchangeRatesArray' which will lead to PHP notices.
Open

            $exchangeRatesArray[$value['code']] = $value['rate_float'];
Severity: Minor
Found in src/Provider/CoindeskProvider.php by phpmd

UndefinedVariable

Since: 2.8.0

Detects when a variable is used that has not been defined before.

Example

class Foo
{
    private function bar()
    {
        // $message is undefined
        echo $message;
    }
}

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

Avoid using undefined variables such as '$exchangeRatesArray' which will lead to PHP notices.
Open

        return $exchangeRatesArray;
Severity: Minor
Found in src/Provider/BitpayProvider.php by phpmd

UndefinedVariable

Since: 2.8.0

Detects when a variable is used that has not been defined before.

Example

class Foo
{
    private function bar()
    {
        // $message is undefined
        echo $message;
    }
}

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

Avoid using undefined variables such as '$exchangeRatesArray' which will lead to PHP notices.
Open

            $exchangeRatesArray[$data['code']] = $data['rate'];
Severity: Minor
Found in src/Provider/BitpayProvider.php by phpmd

UndefinedVariable

Since: 2.8.0

Detects when a variable is used that has not been defined before.

Example

class Foo
{
    private function bar()
    {
        // $message is undefined
        echo $message;
    }
}

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

Severity
Category
Status
Source
Language