新版订单消耗系统

tinker.php 1015B

123456789101112131415161718192021222324252627282930313233343536
  1. <?php
  2. return [
  3. /*
  4. |--------------------------------------------------------------------------
  5. | Console Commands
  6. |--------------------------------------------------------------------------
  7. |
  8. | This option allows you to add additional Artisan commands that should
  9. | be available within the Tinker environment. Once the command is in
  10. | this array you may execute the command in Tinker using its name.
  11. |
  12. */
  13. 'commands' => [
  14. // App\Console\Commands\ExampleCommand::class,
  15. ],
  16. /*
  17. |--------------------------------------------------------------------------
  18. | Alias Blacklist
  19. |--------------------------------------------------------------------------
  20. |
  21. | Typically, Tinker automatically aliases classes as you require them in
  22. | Tinker. However, you may wish to never alias certain classes, which
  23. | you may accomplish by listing the classes in the following array.
  24. |
  25. */
  26. 'dont_alias' => [
  27. 'App\Nova',
  28. ],
  29. ];