14 lines
		
	
	
		
			275 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			275 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| namespace Rinsvent\RequestBundle\Service\Transformer;
 | |
| 
 | |
| use Rinsvent\Data2DTO\Transformer\TransformerInterface;
 | |
| 
 | |
| abstract class AbstractTransformer implements TransformerInterface
 | |
| {
 | |
|     public static function getLocatorKey()
 | |
|     {
 | |
|         return static::class;
 | |
|     }
 | |
| }
 |