1234567891011121314151617181920212223242526 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Mtf\Util\Generate\File;
- /**
- * Interface for file template.
- */
- interface TemplateInterface
- {
- /**
- * Create and return file content.
- *
- * @return string
- */
- public function render();
- /**
- * Get filename. Without directory.
- *
- * @return string
- */
- public function getName();
- }
|