jjsoft-ar/siges-core

View on GitHub
src/Entries/UpdateEntryCommand.php

Summary

Maintainability
A
0 mins
Test Coverage

The parameter $entry_id is not named in camelCase.
Open

    public function __construct($entity, $entry_id, array $input)
    {
        $this->entity = $entity;
        $this->entry_id = $entry_id;
        $this->input = $input;
Severity: Minor
Found in src/Entries/UpdateEntryCommand.php by phpmd

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 property $entry_id is not named in camelCase.
Open

class UpdateEntryCommand
{
    /**
     * The Entity
     * @var
Severity: Minor
Found in src/Entries/UpdateEntryCommand.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 variable $entry_id is not named in camelCase.
Open

    public function __construct($entity, $entry_id, array $input)
    {
        $this->entity = $entity;
        $this->entry_id = $entry_id;
        $this->input = $input;
Severity: Minor
Found in src/Entries/UpdateEntryCommand.php by phpmd

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();
    }
}

Source

There are no issues that match your filters.

Category
Status