123456789101112131415161718192021222324 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Downloadable\Helper;
- use Magento\Downloadable\Test\Unit\Helper\DownloadTest;
- /**
- * @return bool
- */
- function function_exists()
- {
- return DownloadTest::$functionExists;
- }
- /**
- * @return string
- */
- function mime_content_type()
- {
- return DownloadTest::$mimeContentType;
- }
|