Textarea.php 333 B

123456789101112131415
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Eav\Model\Attribute\Data;
  7. /**
  8. * EAV Entity Attribute Text Area Data Model
  9. *
  10. * @author Magento Core Team <core@magentocommerce.com>
  11. */
  12. class Textarea extends \Magento\Eav\Model\Attribute\Data\Text
  13. {
  14. }