railpage/railpagecore

View on GitHub
lib/Locos/WheelArrangement.php

Summary

Maintainability
B
4 hrs
Test Coverage

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

        } else {
            $this->db->insert("wheel_arrangements", $data);
            $this->id = $this->db->lastInsertId();
        }
Severity: Minor
Found in lib/Locos/WheelArrangement.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

Similar blocks of code found in 3 locations. Consider refactoring.
Open

        $data = array(
            "title" => $this->name,
            "arrangement" => $this->arrangement,
            "image" => $this->image,
            "slug" => $this->slug
Severity: Major
Found in lib/Locos/WheelArrangement.php and 2 other locations - About 1 hr to fix
lib/Locos/Gauge.php on lines 178..183
lib/Timetables/Point.php on lines 159..164

Duplicated Code

Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

Tuning

This issue has a mass of 36.

We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

Refactorings

Further Reading

Identical blocks of code found in 2 locations. Consider refactoring.
Open

        if (!is_array($row) || count($row) === 0) {
            return false;
        }
Severity: Major
Found in lib/Locos/WheelArrangement.php and 1 other location - About 1 hr to fix
lib/Locos/Type.php on lines 84..86

Duplicated Code

Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

Tuning

This issue has a mass of 35.

We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

Refactorings

Further Reading

Similar blocks of code found in 18 locations. Consider refactoring.
Open

        if (empty($this->arrangement)) {
            throw new Exception("Cannot validate changes to this wheel arrangement: arrangement cannot be empty");
            return false;
        }
Severity: Major
Found in lib/Locos/WheelArrangement.php and 17 other locations - About 45 mins to fix
lib/Jobs/Job.php on lines 230..233
lib/Jobs/Job.php on lines 243..246
lib/Links/Link.php on lines 136..139
lib/Links/Link.php on lines 141..144
lib/Links/Link.php on lines 146..149
lib/Locations/Location.php on lines 881..884
lib/Locations/Location.php on lines 899..902
lib/Locos/Type.php on lines 117..120
lib/News/Topic.php on lines 337..340
lib/News/Topic.php on lines 356..359
lib/Sightings/Sighting.php on lines 219..222
lib/Sightings/Sighting.php on lines 224..227
lib/Sightings/Sighting.php on lines 229..232
lib/Sightings/Sighting.php on lines 234..237
lib/SiteEvent.php on lines 148..151
lib/SiteEvent.php on lines 153..156
lib/SiteEvent.php on lines 158..161

Duplicated Code

Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

Tuning

This issue has a mass of 25.

We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

Refactorings

Further Reading

Similar blocks of code found in 12 locations. Consider refactoring.
Open

        if (is_null($this->image)) {
            $this->image = "";
        }
Severity: Major
Found in lib/Locos/WheelArrangement.php and 11 other locations - About 40 mins to fix
lib/Downloads/Download.php on lines 293..295
lib/Feedback/FeedbackItem.php on lines 180..182
lib/Forums/Post.php on lines 351..353
lib/Glossary/Entry.php on lines 262..264
lib/Locos/Date.php on lines 266..268
lib/News/Article.php on lines 766..768
lib/News/Article.php on lines 770..772
lib/News/Article.php on lines 786..788
lib/PrivateMessages/Message.php on lines 302..304
lib/Sightings/Sighting.php on lines 239..241
lib/Sightings/Sighting.php on lines 243..245

Duplicated Code

Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

Tuning

This issue has a mass of 23.

We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

Refactorings

Further Reading

Similar blocks of code found in 3 locations. Consider refactoring.
Open

        if (empty($this->slug)) {
            $this->generateSlug(); 
            $this->commit(); 
        }
Severity: Minor
Found in lib/Locos/WheelArrangement.php and 2 other locations - About 30 mins to fix
lib/Forums/Post.php on lines 322..325
lib/Forums/Thread.php on lines 252..255

Duplicated Code

Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

Tuning

This issue has a mass of 21.

We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

Refactorings

Further Reading

Function closing brace must go on the next line following the body; found 1 blank lines before brace
Open

    }

Function closing brace must go on the next line following the body; found 1 blank lines before brace
Open

    }

There are no issues that match your filters.

Category
Status