Code Duplication    Length = 7-7 lines in 2 locations

tests/integration/ParserTest.php 1 location

@@ 124-130 (lines=7) @@
121
    /**
122
     * @return array
123
     */
124
    public function parseExceptionsData()
125
    {
126
        return [
127
            ['"string",\\', RuntimeException::class],
128
            ['"string"stuff,things', RuntimeException::class],
129
        ];
130
    }
131
}
132

tests/unit/ValueParser/BoolValueParserTest.php 1 location

@@ 59-65 (lines=7) @@
56
    /**
57
     * @return array
58
     */
59
    public function getParseData()
60
    {
61
        return [
62
            ['true', true],
63
            ['false', false],
64
        ];
65
    }
66
}
67