src/CreateReflectionForCallableCapableTrait.php
The method _createReflectionFunction is not named in camelCase. Open
Open
abstract protected function _createReflectionFunction($functionName);
- 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 _createReflectionForCallable is not named in camelCase. Open
Open
protected function _createReflectionForCallable($callable)
{
$callable = $this->_normalizeCallable($callable);
// String or closure means function
- 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 _createReflectionMethod is not named in camelCase. Open
Open
abstract protected function _createReflectionMethod($className, $methodName);
- 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 _normalizeString is not named in camelCase. Open
Open
abstract protected function _normalizeString($subject);
- 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 _normalizeCallable is not named in camelCase. Open
Open
abstract public function _normalizeCallable($callable);
- 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() {
}
}