src/Test/AbstractSource.php
The method _validateItem is not named in camelCase. Open
Open
protected function _validateItem($item)
{
if (!($item instanceof TestInterface)) {
throw new InvalidArgumentException(sprintf('Item must be a valid test'));
}
- 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 _getItemKey is not named in camelCase. Open
Open
protected function _getItemKey($item)
{
return $item->getKey();
}
- 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() {
}
}