src/Writer/AbstractWriter.php
The method _simpleDebug is not named in camelCase. Open
Open
protected function _simpleDebug($object)
{
if (is_object($object)) {
return sprintf('object(%1$s)', get_class($object));
}
- 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 _write is not named in camelCase. Open
Open
abstract protected function _write($text);
- 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 _isShouldWriteLevel is not named in camelCase. Open
Open
protected function _isShouldWriteLevel($level)
{
return $this->getLevel() >= intval($level);
}
- 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 _getEol is not named in camelCase. Open
Open
protected function _getEol()
{
return static::EOL;
}
- 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() {
}
}