src/FeedMeNow/Model/Category.php
Method name "Category::GetAlias" is not in camel caps format Open
Open
public function GetAlias()
- Exclude checks
Method name "Category::GetTitle" is not in camel caps format Open
Open
public function GetTitle()
- Exclude checks
The method GetTitle is not named in camelCase. Open
Open
public function GetTitle()
{
return $this->title;
}
- Read upRead up
- Exclude checks
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 GetAlias is not named in camelCase. Open
Open
public function GetAlias()
{
return $this->alias;
}
- Read upRead up
- Exclude checks
CamelCaseMethodName
Since: 0.2
It is considered best practice to use the camelCase notation to name methods.
Example
class ClassName {
public function get_name() {
}
}