123456789101112131415161718192021222324252627282930313233 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Migration\TestFramework;
- /**
- * Class ProgressBar
- */
- class ProgressBar extends \Migration\App\ProgressBar\LogLevelProcessor
- {
- /**
- * @inheritdoc
- */
- public function start($max = null, $forceLogLevel = false)
- {
- }
- /**
- * @inheritdoc
- */
- public function finish($forceLogLevel = false)
- {
- }
- /**
- * @inheritdoc
- */
- public function advance($forceLogLevel = false)
- {
- }
- }
|