src/Commands/GetCommand.php
Avoid using static access to class '\Settings' in method 'handle'. Open
Open
$value = Settings::getKey($this->argument('key'), $database);
- 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
The method handle uses an else expression. Else clauses are basically not necessary and you can simplify the code by not using them. Open
Open
} else {
$database = $this->option('database');
}
- Read upRead up
- Exclude checks
ElseExpression
Since: 1.4.0
An if expression with an else branch is basically not necessary. You can rewrite the conditions in a way that the else clause is not necessary and the code becomes simpler to read. To achieve this, use early return statements, though you may need to split the code it several smaller methods. For very simple assignments you could also use the ternary operations.
Example
class Foo
{
public function bar($flag)
{
if ($flag) {
// one branch
} else {
// another branch
}
}
}
Source https://phpmd.org/rules/cleancode.html#elseexpression
Call to method getKey
from undeclared class \Settings
(Did you mean class \Poisa\Settings\Settings or class \Poisa\Settings\Facades\Settings or class \Poisa\Settings\Models\Settings) Open
Open
$value = Settings::getKey($this->argument('key'), $database);
- Exclude checks
Call to undeclared method \Poisa\Settings\Commands\GetCommand::argument
Open
Open
$value = Settings::getKey($this->argument('key'), $database);
- Exclude checks
Class extends undeclared class \Illuminate\Console\Command
Open
Open
class GetCommand extends Command
- Exclude checks
Call to undeclared method \Poisa\Settings\Commands\GetCommand::option
Open
Open
$database = $this->option('database');
- Exclude checks
Method \Poisa\Settings\Commands\GetCommand::handle
is declared to return mixed
but has no return value Open
Open
public function handle()
- Exclude checks
Call to undeclared method \Poisa\Settings\Commands\GetCommand::line
Open
Open
$this->line(print_r($value, true));
- Exclude checks
Call to undeclared method \Poisa\Settings\Commands\GetCommand::option
Open
Open
if (!$this->option('database')) {
- Exclude checks