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 = 39-40 lines in 2 locations

src/Type/BoolType.php 1 location

@@ 8-47 (lines=40) @@
5
use ApiClients\Tools\ResourceTestUtilities\Type;
6
use Generator;
7
8
class BoolType extends AbstractType implements Type
9
{
10
    const SCALAR = 'bool';
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 (bool)mt_rand(0, 1);
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
        yield FloatType::class;
44
        yield StringType::class;
45
        yield DoubleType::class;
46
    }
47
}
48

src/Type/FloatType.php 1 location

@@ 8-46 (lines=39) @@
5
use ApiClients\Tools\ResourceTestUtilities\Type;
6
use Generator;
7
8
class FloatType extends AbstractType implements Type
9
{
10
    const SCALAR = 'float';
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 microtime(true);
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 BoolType::class;
43
        yield IntType::class;
44
        yield StringType::class;
45
    }
46
}
47