lib/Ajde/User/Sso/Twitter.php

Summary

Maintainability
A
0 mins
Test Coverage

Missing class import via use statement (line '39', column '24').
Open

            return new Ajde_Social_Provider_Twitter($this->_credentials['oauth_token'],
Severity: Minor
Found in lib/Ajde/User/Sso/Twitter.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 '42', column '24').
Open

            return new Ajde_Social_Provider_Twitter();
Severity: Minor
Found in lib/Ajde/User/Sso/Twitter.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 '109', column '27').
Open

                throw new Ajde_Exception('Could not connect to Twitter ('.$connection->http_info.'). Refresh the page or try again later.');
Severity: Minor
Found in lib/Ajde/User/Sso/Twitter.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 __construct has a boolean flag argument $credentials, which is a certain sign of a Single Responsibility Principle violation.
Open

    public function __construct($credentials = false)
Severity: Minor
Found in lib/Ajde/User/Sso/Twitter.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 '90', column '19').
Open

        throw new Ajde_Exception('Provider Facebook has no authenticated user');
Severity: Minor
Found in lib/Ajde/User/Sso/Twitter.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 '16', column '31').
Open

        $this->_session = new Ajde_Session('user');
Severity: Minor
Found in lib/Ajde/User/Sso/Twitter.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 getUsernameSuggestion uses an else expression. Else clauses are basically not necessary and you can simplify the code by not using them.
Open

        } else {
            return false;
        }
Severity: Minor
Found in lib/Ajde/User/Sso/Twitter.php by phpmd

ElseExpression

Since: 1.4.0

An if expression with an else branch is basically not necessary. You can rewrite the conditions in a way that the else clause is not necessary and the code becomes simpler to read. To achieve this, use early return statements, though you may need to split the code it several smaller methods. For very simple assignments you could also use the ternary operations.

Example

class Foo
{
    public function bar($flag)
    {
        if ($flag) {
            // one branch
        } else {
            // another branch
        }
    }
}

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

The method getProvider uses an else expression. Else clauses are basically not necessary and you can simplify the code by not using them.
Open

        } else {
            return new Ajde_Social_Provider_Twitter();
        }
Severity: Minor
Found in lib/Ajde/User/Sso/Twitter.php by phpmd

ElseExpression

Since: 1.4.0

An if expression with an else branch is basically not necessary. You can rewrite the conditions in a way that the else clause is not necessary and the code becomes simpler to read. To achieve this, use early return statements, though you may need to split the code it several smaller methods. For very simple assignments you could also use the ternary operations.

Example

class Foo
{
    public function bar($flag)
    {
        if ($flag) {
            // one branch
        } else {
            // another branch
        }
    }
}

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

The method __construct uses an else expression. Else clauses are basically not necessary and you can simplify the code by not using them.
Open

        } else {
            if ($this->_session->has(self::SSO_SESSION_KEY)) {
                $this->_credentials = $this->_session->get(self::SSO_SESSION_KEY);
            }
        }
Severity: Minor
Found in lib/Ajde/User/Sso/Twitter.php by phpmd

ElseExpression

Since: 1.4.0

An if expression with an else branch is basically not necessary. You can rewrite the conditions in a way that the else clause is not necessary and the code becomes simpler to read. To achieve this, use early return statements, though you may need to split the code it several smaller methods. For very simple assignments you could also use the ternary operations.

Example

class Foo
{
    public function bar($flag)
    {
        if ($flag) {
            // one branch
        } else {
            // another branch
        }
    }
}

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

The method getUidHash uses an else expression. Else clauses are basically not necessary and you can simplify the code by not using them.
Open

        } else {
            return false;
        }
Severity: Minor
Found in lib/Ajde/User/Sso/Twitter.php by phpmd

ElseExpression

Since: 1.4.0

An if expression with an else branch is basically not necessary. You can rewrite the conditions in a way that the else clause is not necessary and the code becomes simpler to read. To achieve this, use early return statements, though you may need to split the code it several smaller methods. For very simple assignments you could also use the ternary operations.

Example

class Foo
{
    public function bar($flag)
    {
        if ($flag) {
            // one branch
        } else {
            // another branch
        }
    }
}

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

The method getAvatarSuggestion uses an else expression. Else clauses are basically not necessary and you can simplify the code by not using them.
Open

        } else {
            return false;
        }
Severity: Minor
Found in lib/Ajde/User/Sso/Twitter.php by phpmd

ElseExpression

Since: 1.4.0

An if expression with an else branch is basically not necessary. You can rewrite the conditions in a way that the else clause is not necessary and the code becomes simpler to read. To achieve this, use early return statements, though you may need to split the code it several smaller methods. For very simple assignments you could also use the ternary operations.

Example

class Foo
{
    public function bar($flag)
    {
        if ($flag) {
            // one branch
        } else {
            // another branch
        }
    }
}

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

The class Ajde_User_Sso_Twitter is not named in CamelCase.
Open

class Ajde_User_Sso_Twitter extends Ajde_User_Sso
{
    private $_session;
    private $_credentials = false;
    private $_me;
Severity: Minor
Found in lib/Ajde/User/Sso/Twitter.php by phpmd

CamelCaseClassName

Since: 0.2

It is considered best practice to use the CamelCase notation to name classes.

Example

class class_name {
}

Source

The property $_session is not named in camelCase.
Open

class Ajde_User_Sso_Twitter extends Ajde_User_Sso
{
    private $_session;
    private $_credentials = false;
    private $_me;
Severity: Minor
Found in lib/Ajde/User/Sso/Twitter.php by phpmd

CamelCasePropertyName

Since: 0.2

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

Example

class ClassName {
    protected $property_name;
}

Source

The property $_credentials is not named in camelCase.
Open

class Ajde_User_Sso_Twitter extends Ajde_User_Sso
{
    private $_session;
    private $_credentials = false;
    private $_me;
Severity: Minor
Found in lib/Ajde/User/Sso/Twitter.php by phpmd

CamelCasePropertyName

Since: 0.2

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

Example

class ClassName {
    protected $property_name;
}

Source

Avoid variables with short names like $me. Configured minimum length is 3.
Open

            $me = $this->getMe();
Severity: Minor
Found in lib/Ajde/User/Sso/Twitter.php by phpmd

ShortVariable

Since: 0.2

Detects when a field, local, or parameter has a very short name.

Example

class Something {
    private $q = 15; // VIOLATION - Field
    public static function main( array $as ) { // VIOLATION - Formal
        $r = 20 + $this->q; // VIOLATION - Local
        for (int $i = 0; $i < 10; $i++) { // Not a Violation (inside FOR)
            $r += $this->q;
        }
    }
}

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

The property $_me is not named in camelCase.
Open

class Ajde_User_Sso_Twitter extends Ajde_User_Sso
{
    private $_session;
    private $_credentials = false;
    private $_me;
Severity: Minor
Found in lib/Ajde/User/Sso/Twitter.php by phpmd

CamelCasePropertyName

Since: 0.2

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

Example

class ClassName {
    protected $property_name;
}

Source

The variable $request_token is not named in camelCase.
Open

    public function getAuthenticationURL($returnto = '')
    {
        $connection = $this->getProvider();

        /* Get temporary credentials. */
Severity: Minor
Found in lib/Ajde/User/Sso/Twitter.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

The variable $request_token is not named in camelCase.
Open

    public function getAuthenticationURL($returnto = '')
    {
        $connection = $this->getProvider();

        /* Get temporary credentials. */
Severity: Minor
Found in lib/Ajde/User/Sso/Twitter.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

The variable $request_token is not named in camelCase.
Open

    public function getAuthenticationURL($returnto = '')
    {
        $connection = $this->getProvider();

        /* Get temporary credentials. */
Severity: Minor
Found in lib/Ajde/User/Sso/Twitter.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