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.

Code Duplication    Length = 37-37 lines in 2 locations

src/Type/IntType.php 1 location

@@ 8-44 (lines=37) @@
5
use ApiClients\Tools\ResourceTestUtilities\Type;
6
use Generator;
7
8
class IntType extends AbstractType implements Type
9
{
10
    const SCALAR = 'int';
11
12
    /**
13
     * Generate random data
14
     *
15
     * @param int $count Amount of rows to generate and return
16
     * @return Generator
17
     */
18
    public function generate(int $count = 100): Generator
19
    {
20
        for ($i = 0; $i < $count; $i++) {
21
            yield mt_rand($i, $count * mt_rand($i, $count));
22
        }
23
    }
24
25
    /**
26
     * List of types that are compatible with this type
27
     *
28
     * @return Generator
29
     */
30
    public function compatible(): Generator
31
    {
32
        yield static::class;
33
    }
34
35
    /**
36
     * List of types that are incompatible with this type
37
     *
38
     * @return Generator
39
     */
40
    public function incompatible(): Generator
41
    {
42
        yield StringType::class;
43
    }
44
}
45

src/Type/StringType.php 1 location

@@ 8-44 (lines=37) @@
5
use ApiClients\Tools\ResourceTestUtilities\Type;
6
use Generator;
7
8
class StringType extends AbstractType implements Type
9
{
10
    const SCALAR = 'string';
11
12
    /**
13
     * Generate random data
14
     *
15
     * @param int $count Amount of rows to generate and return
16
     * @return Generator
17
     */
18
    public function generate(int $count = 100): Generator
19
    {
20
        for ($i = 0; $i < $count; $i++) {
21
            yield (string)mt_rand($i, $count * mt_rand($i, $count));
22
        }
23
    }
24
25
    /**
26
     * List of types that are compatible with this type
27
     *
28
     * @return Generator
29
     */
30
    public function compatible(): Generator
31
    {
32
        yield static::class;
33
    }
34
35
    /**
36
     * List of types that are incompatible with this type
37
     *
38
     * @return Generator
39
     */
40
    public function incompatible(): Generator
41
    {
42
        yield IntType::class;
43
    }
44
}
45