Code Duplication    Length = 4-4 lines in 2 locations

bridge/doctrine-collections/tests/Functional/CollectionsVisitorTest.php 2 locations

@@ 119-122 (lines=4) @@
116
            [
117
                'in',
118
                [1, 2, 3],
119
                function ($expr) {
120
                    $this->assertEquals('IN', $expr->getOperator());
121
                    $this->assertEquals([1, 2, 3], $expr->getValue()->getValue());
122
                },
123
            ],
124
            [
125
                'nin',
@@ 127-130 (lines=4) @@
124
            [
125
                'nin',
126
                [1, 2, 3],
127
                function ($expr) {
128
                    $this->assertEquals('NIN', $expr->getOperator());
129
                    $this->assertEquals([1, 2, 3], $expr->getValue()->getValue());
130
                },
131
            ],
132
        ];
133
    }