ProgressBar.php 554 B

123456789101112131415161718192021222324252627282930313233
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Migration\TestFramework;
  7. /**
  8. * Class ProgressBar
  9. */
  10. class ProgressBar extends \Migration\App\ProgressBar\LogLevelProcessor
  11. {
  12. /**
  13. * @inheritdoc
  14. */
  15. public function start($max = null, $forceLogLevel = false)
  16. {
  17. }
  18. /**
  19. * @inheritdoc
  20. */
  21. public function finish($forceLogLevel = false)
  22. {
  23. }
  24. /**
  25. * @inheritdoc
  26. */
  27. public function advance($forceLogLevel = false)
  28. {
  29. }
  30. }