1<?php
2
3declare(strict_types=1);
4
5namespace JMS\Serializer\Ordering;
6
7final class IdenticalPropertyOrderingStrategy implements PropertyOrderingInterface
8{
9    /**
10     * {@inheritdoc}
11     */
12    public function order(array $properties): array
13    {
14        return $properties;
15    }
16}
17