agile-se1 / bit-web

Class method doesn't comply with PSR standards PHP-C1001
Style
Major
5 months agoa year old
Class method test_that_true_is_true() doesn't comply with the PSR standard
11     *
12     * @return void
13     */
14    public function test_that_true_is_true()15    {
16        $this->assertTrue(true);
17    }
Class method test_the_application_returns_a_successful_response() doesn't comply with the PSR standard
12     *
13     * @return void
14     */
15    public function test_the_application_returns_a_successful_response()16    {
17        $response = $this->get('/');
18