Code Duplication    Length = 4-4 lines in 2 locations

src/svg/shape/Path.php 2 locations

@@ 325-328 (lines=4) @@
322
            while ($i < count($value)) {
323
                switch ($pathCommand) {
324
                    case 'm' :
325
                    case 'l' :
326
                        $point['x'] += $value[$i++];
327
                        $point['y'] += $value[$i++];
328
                        break;
329
                    case 'M' :
330
                    case 'L' :
331
                        $point['x'] = $value[$i++];
@@ 330-333 (lines=4) @@
327
                        $point['y'] += $value[$i++];
328
                        break;
329
                    case 'M' :
330
                    case 'L' :
331
                        $point['x'] = $value[$i++];
332
                        $point['y'] = $value[$i++];
333
                        break;
334
                    case 'v' :
335
                        $point['y'] += $value[$i++];
336
                        break;