Code Duplication    Length = 4-4 lines in 2 locations

PHPDaemon/Clients/AMQP/Driver/Protocol/v091/Serializer/FrameSerializerTrait.php 2 locations

@@ 247-250 (lines=4) @@
244
                $properties .= $this->tableSerializer->serialize($frame->headers);
245
            }
246
247
            if (null !== $frame->deliveryMode) {
248
                $flags |= 4096;
249
                $properties .= \pack('c', $frame->deliveryMode);
250
            }
251
252
            if (null !== $frame->priority) {
253
                $flags |= 2048;
@@ 252-255 (lines=4) @@
249
                $properties .= \pack('c', $frame->deliveryMode);
250
            }
251
252
            if (null !== $frame->priority) {
253
                $flags |= 2048;
254
                $properties .= \pack('c', $frame->priority);
255
            }
256
257
            if (null !== $frame->correlationId) {
258
                $flags |= 1024;