Code Duplication    Length = 4-4 lines in 2 locations

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

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