railpage/railpagecore

View on GitHub
lib/Locations/DateType.php

Summary

Maintainability
A
0 mins
Test Coverage

The method __construct has a boolean flag argument $id, which is a certain sign of a Single Responsibility Principle violation.
Open

        public function __construct($id = false) {
Severity: Minor
Found in lib/Locations/DateType.php by phpmd

BooleanArgumentFlag

Since: 1.4.0

A boolean flag argument is a reliable indicator for a violation of the Single Responsibility Principle (SRP). You can fix this problem by extracting the logic in the boolean flag into its own class or method.

Example

class Foo {
    public function bar($flag = true) {
    }
}

Source https://phpmd.org/rules/cleancode.html#booleanargumentflag

Avoid assigning values to variables in if clauses and the like (line '43', column '21').
Open

        public function __construct($id = false) {
            parent::__construct(); 
            
            if (filter_var($id, FILTER_VALIDATE_INT)) {
                $query = "SELECT * FROM location_datetypes WHERE id = ?";
Severity: Minor
Found in lib/Locations/DateType.php by phpmd

IfStatementAssignment

Since: 2.7.0

Assignments in if clauses and the like are considered a code smell. Assignments in PHP return the right operand as their result. In many cases, this is an expected behavior, but can lead to many difficult to spot bugs, especially when the right operand could result in zero, null or an empty string and the like.

Example

class Foo
{
    public function bar($flag)
    {
        if ($foo = 'bar') { // possible typo
            // ...
        }
        if ($baz = 0) { // always false
            // ...
        }
    }
}

Source http://phpmd.org/rules/cleancode.html#ifstatementassignment

There must be one blank line after the namespace declaration
Open

    namespace Railpage\Locations;
Severity: Minor
Found in lib/Locations/DateType.php by phpcodesniffer

Line indented incorrectly; expected 0 spaces, found 4
Open

    class DateType extends Locations {
Severity: Minor
Found in lib/Locations/DateType.php by phpcodesniffer

Line indented incorrectly; expected 4 spaces, found 8
Open

        public $id;
Severity: Minor
Found in lib/Locations/DateType.php by phpcodesniffer

Line indented incorrectly; expected 8 spaces, found 12
Open

            if (filter_var($id, FILTER_VALIDATE_INT)) {
Severity: Minor
Found in lib/Locations/DateType.php by phpcodesniffer

Line indented incorrectly; expected 0 spaces, found 4
Open

    }
Severity: Minor
Found in lib/Locations/DateType.php by phpcodesniffer

Line indented incorrectly; expected 8 spaces, found 12
Open

            }
Severity: Minor
Found in lib/Locations/DateType.php by phpcodesniffer

Line indented incorrectly; expected 4 spaces, found 8
Open

        public function __construct($id = false) {
Severity: Minor
Found in lib/Locations/DateType.php by phpcodesniffer

Line indented incorrectly; expected 12 spaces, found 16
Open

                }
Severity: Minor
Found in lib/Locations/DateType.php by phpcodesniffer

Line indented incorrectly; expected 12 spaces, found 16
Open

                if ($row = $this->db->fetchRow($query, $id)) {
Severity: Minor
Found in lib/Locations/DateType.php by phpcodesniffer

Line indented incorrectly; expected 4 spaces, found 8
Open

        }
Severity: Minor
Found in lib/Locations/DateType.php by phpcodesniffer

Line indented incorrectly; expected 4 spaces, found 8
Open

        public $name;
Severity: Minor
Found in lib/Locations/DateType.php by phpcodesniffer

There are no issues that match your filters.

Category
Status