anime-db / anime-db

Anime DB

Home Page:http://anime-db.org

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

[Insight] Text files should end with a newline character

peter-gribanov opened this issue · comments

in src/Composer/Job/Container.php, line 172

This file ends with no newline character. It won't render properly on a terminal, and it's considered a bad practice. Add a simple line feed as the last character to fix it.

                throw new \RuntimeException('The php executable could not be found, add it to your PATH environment variable and try again');
            }
        }
        return $this->php_path;
    }
}