sathyashrayan

EavAttributeInputType.php

Aug 3rd, 2016
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.38 KB | None | 0 0
  1. namespace Attributes\Model\AttributeType;
  2.  
  3. class EavAttributeInputType implements EavAttributeInputTypeInterface
  4. {
  5.    
  6.     private $eavAttributeInputTypeId;
  7.     private $name;
  8.    
  9.     public function getEavAttributeInputTypeId()
  10.     {
  11.         return $this->eavAttributeInputTypeId;
  12.     }
  13.  
  14.    
  15.     public function getName()
  16.     {
  17.         return $this->name;
  18.     }
  19. }
Add Comment
Please, Sign In to add comment