Metadata/Resource/ResourceMetadata.php
Method __construct
has 6 arguments (exceeds 4 allowed). Consider refactoring. Open
Open
$type,
$subtype,
\ReflectionClass $resourceClass,
ResourceFields $fields,
ResourceRelationships $relationships,
Missing class import via use statement (line '143', column '36'). Open
Open
$this->resourceClass = new \ReflectionClass($import['resourceClass']);
- Read upRead up
- Exclude checks
MissingImport
Since: 2.7.0
Importing all external classes in a file through use statements makes them clearly visible.
Example
function make() {
return new \stdClass();
}
Source http://phpmd.org/rules/cleancode.html#MissingImport
Avoid using static access to class '\GoIntegro\Hateoas\Util\Reflection' in method 'getInjectedFields'. Open
Open
if (Reflection::isMethodInjector($method)) {
- Read upRead up
- Exclude checks
StaticAccess
Since: 1.4.0
Static access causes unexchangeable dependencies to other classes and leads to hard to test code. Avoid using static access at all costs and instead inject dependencies through the constructor. The only case when static access is acceptable is when used for factory methods.
Example
class Foo
{
public function bar()
{
Bar::baz();
}
}
Source https://phpmd.org/rules/cleancode.html#staticaccess
Avoid using static access to class '\GoIntegro\Hateoas\Util\Inflector' in method 'fieldFromInjector'. Open
Open
return Inflector::hyphenate($name);
- Read upRead up
- Exclude checks
StaticAccess
Since: 1.4.0
Static access causes unexchangeable dependencies to other classes and leads to hard to test code. Avoid using static access at all costs and instead inject dependencies through the constructor. The only case when static access is acceptable is when used for factory methods.
Example
class Foo
{
public function bar()
{
Bar::baz();
}
}
Source https://phpmd.org/rules/cleancode.html#staticaccess
Avoid unused parameters such as '$pageSize'. Open
Open
$pageSize = NULL
- 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 closing parenthesis and the opening brace of a multi-line function declaration must be on the same line Open
Open
{
- Exclude checks
TRUE, FALSE and NULL must be lowercase; expected "null" but found "NULL" Open
Open
$pageSize = NULL
- Exclude checks