Saibamen/HotelManager

View on GitHub
app/Http/Middleware/SetLanguage.php

Summary

Maintainability
A
0 mins
Test Coverage
A
100%

The method handle uses an else expression. Else clauses are basically not necessary and you can simplify the code by not using them.
Open

        } else {
            $locale = Config::get('app.locale');
        }
Severity: Minor
Found in app/Http/Middleware/SetLanguage.php by phpmd

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

Avoid using static access to class '\App' in method 'handle'.
Open

        App::setLocale($locale);
Severity: Minor
Found in app/Http/Middleware/SetLanguage.php by phpmd

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 '\Config' in method 'handle'.
Open

            $locale = Config::get('app.locale');
Severity: Minor
Found in app/Http/Middleware/SetLanguage.php by phpmd

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

Take the required action to fix the issue indicated by this "FIXME" comment.
Open

            // FIXME: bug in Laravel decrypt...

FIXME tags are commonly used to mark places where a bug is suspected, but which the developer wants to deal with later.

Sometimes the developer will not have the time or will simply forget to get back to that tag.

This rule is meant to track those tags and to ensure that they do not go unnoticed.

Noncompliant Code Example

function divide($numerator, $denominator) {
  return $numerator / $denominator;              // FIXME denominator value might be  0
}

See

FIXME found
Open

            // FIXME: bug in Laravel decrypt...
Severity: Minor
Found in app/Http/Middleware/SetLanguage.php by fixme

There are no issues that match your filters.

Category
Status