1<?php 2 3declare(strict_types=1); 4 5namespace JMS\Serializer\Naming; 6 7use JMS\Serializer\Metadata\PropertyMetadata; 8 9final class IdenticalPropertyNamingStrategy implements PropertyNamingStrategyInterface 10{ 11 public function translateName(PropertyMetadata $property): string 12 { 13 return $property->name; 14 } 15} 16