1 | <?php |
||
8 | abstract class AbstractAttributeCommand extends AbstractMagentoCommand |
||
9 | { |
||
10 | /** |
||
11 | * Gets an attribute model |
||
12 | * |
||
13 | * @param string $entityType |
||
14 | * @param string $attributeCode |
||
15 | * @return Magento\Eav\Model\Entity\Attribute\AbstractAttribute |
||
16 | */ |
||
17 | public function getAttribute($entityType, $attributeCode) |
||
24 | } |
||
25 |