TikiWiki/tiki-manager

View on GitHub
src/Libs/Helpers/Wrapper.php

Summary

Maintainability
A
0 mins
Test Coverage

Found a return statement with a value in the implementation of the magic method \TikiManager\Libs\Helpers\Wrapper::__set, expected void return type
Open

    public function __set($name, $value)
Severity: Info
Found in src/Libs/Helpers/Wrapper.php by phan

The property $wrapped_object is not named in camelCase.
Open

class Wrapper
{
    private $wrapped_object;
    private $wrapped_properties;
    private $wrapped_methods;
Severity: Minor
Found in src/Libs/Helpers/Wrapper.php by phpmd

CamelCasePropertyName

Since: 0.2

It is considered best practice to use the camelCase notation to name attributes.

Example

class ClassName {
    protected $property_name;
}

Source

The property $wrapped_methods is not named in camelCase.
Open

class Wrapper
{
    private $wrapped_object;
    private $wrapped_properties;
    private $wrapped_methods;
Severity: Minor
Found in src/Libs/Helpers/Wrapper.php by phpmd

CamelCasePropertyName

Since: 0.2

It is considered best practice to use the camelCase notation to name attributes.

Example

class ClassName {
    protected $property_name;
}

Source

The property $wrapped_properties is not named in camelCase.
Open

class Wrapper
{
    private $wrapped_object;
    private $wrapped_properties;
    private $wrapped_methods;
Severity: Minor
Found in src/Libs/Helpers/Wrapper.php by phpmd

CamelCasePropertyName

Since: 0.2

It is considered best practice to use the camelCase notation to name attributes.

Example

class ClassName {
    protected $property_name;
}

Source

There are no issues that match your filters.

Category
Status