src/Payment/Request/Order/Order.php
The parameter $decimal_separator is not named in camelCase. Open
Open
protected function amountFormat($decimal_separator, $key = 'amount')
{
return number_format($this->get($key), 2, $decimal_separator, '');
}
- Read upRead up
- Exclude checks
CamelCaseParameterName
Since: 0.2
It is considered best practice to use the camelCase notation to name parameters.
Example
class ClassName {
public function doSomething($user_name) {
}
}
Source
The variable $decimal_separator is not named in camelCase. Open
Open
protected function amountFormat($decimal_separator, $key = 'amount')
{
return number_format($this->get($key), 2, $decimal_separator, '');
}
- Read upRead up
- Exclude checks
CamelCaseVariableName
Since: 0.2
It is considered best practice to use the camelCase notation to name variables.
Example
class ClassName {
public function doSomething() {
$data_module = new DataModule();
}
}