src/library/ThreemaGateway/DataWriter/ActionThrottle.php
Avoid unused parameters such as '$data'. Open
Open
protected function _getExistingData($data)
- Read upRead up
- Exclude checks
UnusedFormalParameter
Since: 0.2
Avoid passing parameters to methods or constructors and then not using those parameters.
Example
class Foo
{
private function bar($howdy)
{
// $howdy is not used
}
}
Source https://phpmd.org/rules/unusedcode.html#unusedformalparameter
Avoid unused parameters such as '$tableName'. Open
Open
protected function _getUpdateCondition($tableName)
- Read upRead up
- Exclude checks
UnusedFormalParameter
Since: 0.2
Avoid passing parameters to methods or constructors and then not using those parameters.
Example
class Foo
{
private function bar($howdy)
{
// $howdy is not used
}
}
Source https://phpmd.org/rules/unusedcode.html#unusedformalparameter
The method _getUpdateCondition is not named in camelCase. Open
Open
protected function _getUpdateCondition($tableName)
{
return '';
}
- 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 _getFields is not named in camelCase. Open
Open
protected function _getFields()
{
return [
ThreemaGateway_Model_ActionThrottle::DB_TABLE => [
'action_id' => [
- 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 _getActionThrottleModel is not named in camelCase. Open
Open
protected function _getActionThrottleModel()
{
return $this->getModelFromCache('ThreemaGateway_Model_ActionThrottle');
}
- 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 _getExistingData is not named in camelCase. Open
Open
protected function _getExistingData($data)
{
return [];
}
- 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() {
}
}