MergeShell.php 888 B

123456789101112131415161718192021222324252627282930313233343536
  1. <?php
  2. /**
  3. * MergeShell file
  4. *
  5. * CakePHP(tm) : Rapid Development Framework (https://cakephp.org)
  6. * Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
  7. *
  8. * Licensed under The MIT License
  9. * For full copyright and license information, please see the LICENSE.txt
  10. * Redistributions of files must retain the above copyright notice
  11. *
  12. * @copyright Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
  13. * @link https://cakephp.org CakePHP(tm) Project
  14. * @since 3.0.8
  15. * @license https://opensource.org/licenses/mit-license.php MIT License
  16. */
  17. namespace TestApp\Shell;
  18. use Cake\Console\Shell;
  19. /**
  20. * for testing merging vars
  21. */
  22. class MergeShell extends Shell
  23. {
  24. /**
  25. * @var array
  26. */
  27. public $tasks = ['DbConfig', 'Fixture'];
  28. /**
  29. * @var string
  30. */
  31. public $modelClass = 'Articles';
  32. }