123456789101112131415161718192021222324252627282930313233 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- /**
- * Request data interface
- */
- namespace Magento\Config\Model\Config\Backend\File\RequestData;
- /**
- * @api
- * @since 100.0.2
- */
- interface RequestDataInterface
- {
- /**
- * Retrieve uploaded file tmp name by path
- *
- * @param string $path
- * @return string
- */
- public function getTmpName($path);
- /**
- * Retrieve uploaded file name by path
- *
- * @param string $path
- * @return string
- */
- public function getName($path);
- }
|