Extension.php 316 B

123456789101112
  1. <?php
  2. /**
  3. * Validator for the file extension of a file
  4. *
  5. * Copyright © Magento, Inc. All rights reserved.
  6. * See COPYING.txt for license details.
  7. */
  8. namespace Magento\Framework\Validator\File;
  9. class Extension extends \Zend_Validate_File_Extension implements \Magento\Framework\Validator\ValidatorInterface
  10. {
  11. }