mcred/FeedMeNow-PHP

View on GitHub
src/FeedMeNow/Model/Category.php

Summary

Maintainability
A
0 mins
Test Coverage

Method name "Category::GetAlias" is not in camel caps format
Open

    public function GetAlias()

Method name "Category::GetTitle" is not in camel caps format
Open

    public function GetTitle()

The method GetAlias is not named in camelCase.
Open

    public function GetAlias()
    {
        return $this->alias;
    }
Severity: Minor
Found in src/FeedMeNow/Model/Category.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 GetTitle is not named in camelCase.
Open

    public function GetTitle()
    {
        return $this->title;
    }
Severity: Minor
Found in src/FeedMeNow/Model/Category.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

There are no issues that match your filters.

Category
Status