Code Duplication    Length = 7-7 lines in 2 locations

Tests/DataProvider/TestScalarDataProvider.php 2 locations

@@ 96-102 (lines=7) @@
93
        ];
94
    }
95
96
    public static function getDatetimeTestData()
97
    {
98
        return [
99
            [null, null, false],
100
            [new \DateTime('now'), date('Y-m-d H:i:s'), true],
101
        ];
102
    }
103
104
    public static function getDatetimetzTestData()
105
    {
@@ 111-117 (lines=7) @@
108
        ];
109
    }
110
111
    public static function getDateTestData()
112
    {
113
        return [
114
            [null, null, false],
115
            [new \DateTime('now'), date('Y-m-d'), true],
116
        ];
117
    }
118
119
120
    public static function getTimestampTestData()