AppStateESS/InternshipInventory

View on GitHub
contrib/dbConnect.php

Summary

Maintainability
A
0 mins
Test Coverage

The function connectToDB() contains an exit expression.
Open

        die('Could not connect to database.\n');
Severity: Minor
Found in contrib/dbConnect.php by phpmd

ExitExpression

Since: 0.2

An exit-expression within regular code is untestable and therefore it should be avoided. Consider to move the exit-expression into some kind of startup script where an error/exception code is returned to the calling environment.

Example

class Foo {
    public function bar($param)  {
        if ($param === 42) {
            exit(23);
        }
    }
}

Source https://phpmd.org/rules/design.html#exitexpression

Saw misspelled annotation @returns. Did you mean @return?
Open

 * @returns <Resource> $db  Database connection handle
Severity: Info
Found in contrib/dbConnect.php by phan

Avoid variables with short names like $db. Configured minimum length is 3.
Open

    $db = pg_connect("user=$dbuser password=$dbpasswd dbname=$dbname");
Severity: Minor
Found in contrib/dbConnect.php by phpmd

ShortVariable

Since: 0.2

Detects when a field, local, or parameter has a very short name.

Example

class Something {
    private $q = 15; // VIOLATION - Field
    public static function main( array $as ) { // VIOLATION - Formal
        $r = 20 + $this->q; // VIOLATION - Local
        for (int $i = 0; $i < 10; $i++) { // Not a Violation (inside FOR)
            $r += $this->q;
        }
    }
}

Source https://phpmd.org/rules/naming.html#shortvariable

There are no issues that match your filters.

Category
Status