GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.

Issues (130)

tests/legacy/OnceTest.php (1 issue)

1
<?php
2
/* (c) Anton Medvedev <[email protected]>
3
 *
4
 * For the full copyright and license information, please view the LICENSE
5
 * file that was distributed with this source code.
6
 */
7
8
namespace Deployer;
9
10
class OnceTest extends AbstractTest
0 ignored issues
show
Deprecated Code introduced by
The class Deployer\AbstractTest has been deprecated: Use JoyTest instead. ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-deprecated  annotation

10
class OnceTest extends /** @scrutinizer ignore-deprecated */ AbstractTest
Loading history...
11
{
12
    public const RECIPE = __DIR__ . '/recipe/once.php';
13
14
    public function testOnce()
15
    {
16
        $this->dep(self::RECIPE, 'test_once');
17
18
        $display = $this->tester->getDisplay();
19
        self::assertEquals(0, $this->tester->getStatusCode(), $display);
20
        self::assertTrue(substr_count($display, 'SHOULD BE ONCE') == 1, $display);
21
    }
22
}
23