Showing 20,971 of 20,976 total issues

The method to_header is not named in camelCase.
Open

    public function to_header($realm = null)
    {
        $first = true;
        if ($realm) {
            $out = 'Authorization: OAuth realm="'.OAuthUtil::urlencode_rfc3986($realm).'"';

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 get_version is not named in camelCase.
Open

    private function get_version(&$request)
    {
        $version = $request->get_parameter('oauth_version');
        if (!$version) {
            // Service Providers MUST assume the protocol version to be 1.0 if this parameter is not present.

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 get_parameter is not named in camelCase.
Open

    public function get_parameter($name)
    {
        return isset($this->parameters[$name]) ? $this->parameters[$name] : null;
    }

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 ACForm is not named in camelCase.
Open

    public function ACForm($route, $id = null, $class = null)
    {
        return Ajde_Component_Form::processStatic($this->getParser(),
            ['route' => $route, 'id' => $id, 'class' => $class]);
    }

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 get_parameters is not named in camelCase.
Open

    public function get_parameters()
    {
        return $this->parameters;
    }

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 lookup_consumer is not named in camelCase.
Open

    public function lookup_consumer($consumer_key)
    {
        // implement me
    }

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 split_header is not named in camelCase.
Open

    public static function split_header($header, $only_allow_oauth_parameters = true)
    {
        $pattern = '/(([-_a-z]*)=("([^"]*)"|([^,]*)),?)/';
        $offset = 0;
        $params = [];

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 get_headers is not named in camelCase.
Open

    public static function get_headers()
    {
        if (function_exists('apache_request_headers')) {
            // we need this to get the actual Authorization: header
            // because apache tends to tell us it doesn't exist

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 _process is not named in camelCase.
Open

    protected function _process(DOMElement $root)
    {
        foreach ($root->getElementsByTagNameNS($this->_acNS, '*') as $element) {
            /* @var $element Ajde_Template_Parser_Xhtml_Element */
            if ($element->inACNameSpace()) {
Severity: Minor
Found in lib/Ajde/Template/Parser/Xhtml.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_nonce is not named in camelCase.
Open

    private static function generate_nonce()
    {
        $mt = microtime();
        $rand = mt_rand();

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 ACMarkdown is not named in camelCase.
Open

    public function ACMarkdown($attributes)
    {
        return Ajde_Component_Markdown::processStatic($this->getParser(), $attributes);
    }

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 _getContents is not named in camelCase.
Open

    protected function _getContents()
    {
        ob_start();
        include $this->getTemplate()->getFilename();
        $contents = ob_get_contents();
Severity: Minor
Found in lib/Ajde/Template/Parser.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 build_signature is not named in camelCase.
Open

    public function build_signature($request, $consumer, $token)
    {
        $key_parts = [
            $consumer->secret,
            ($token) ? $token->secret : '',

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 lookup_token is not named in camelCase.
Open

    public function lookup_token($consumer, $token_type, $token)
    {
        // implement me
    }

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 new_access_token is not named in camelCase.
Open

    public function new_access_token($token, $consumer, $verifier = null)
    {
        // return a new access token attached to this consumer
        // for the user associated with this token if the request token
        // is authorized

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 set_parameter is not named in camelCase.
Open

    public function set_parameter($name, $value, $allow_duplicates = true)
    {
        if ($allow_duplicates && isset($this->parameters[$name])) {
            // We have already added parameter(s) with this name, so add to the list
            if (is_scalar($this->parameters[$name])) {

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 build_signature is not named in camelCase.
Open

    public function build_signature($signature_method, $consumer, $token)
    {
        $signature = $signature_method->build_signature($this, $consumer, $token);

        return $signature;

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 from_consumer_and_token is not named in camelCase.
Open

    public static function from_consumer_and_token($consumer, $token, $http_method, $http_url, $parameters = null)
    {
        @$parameters or $parameters = [];
        $defaults = [
            'oauth_version'      => self::$version,

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 get_signature_base_string is not named in camelCase.
Open

    public function get_signature_base_string()
    {
        $parts = [
            $this->get_normalized_http_method(),
            $this->get_normalized_http_url(),

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 check_timestamp is not named in camelCase.
Open

    private function check_timestamp($timestamp)
    {
        if (!$timestamp) {
            throw new OAuthException(
                'Missing timestamp parameter. The parameter is required'

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

Severity
Category
Status
Source
Language