| 123456789101112131415161718192021 |
- <?php
- /*
- * FecShop file.
- *
- * @link http://www.fecshop.com/
- * @copyright Copyright (c) 2016 FecShop Software LLC
- * @license http://www.fecshop.com/license/
- */
- namespace fecshop\services\extension;
- /**
- * Product services interface.
- * @author Terry Zhao <2358269014@qq.com>
- * @since 1.0
- */
- interface UninstallInterface
- {
- public function run();
- }
|