Se colocaran ejercios para practicar de codigobit
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

commands.php 2.9 KiB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. <?php
  2. return [
  3. /*
  4. |--------------------------------------------------------------------------
  5. | Default Command
  6. |--------------------------------------------------------------------------
  7. |
  8. | Laravel Zero will always run the command specified below when no command name is
  9. | provided. Consider update the default command for single command applications.
  10. | You cannot pass arguments to the default command because they are ignored.
  11. |
  12. */
  13. 'default' => NunoMaduro\LaravelConsoleSummary\SummaryCommand::class,
  14. /*
  15. |--------------------------------------------------------------------------
  16. | Commands Paths
  17. |--------------------------------------------------------------------------
  18. |
  19. | This value determines the "paths" that should be loaded by the console's
  20. | kernel. Foreach "path" present on the array provided below the kernel
  21. | will extract all "Illuminate\Console\Command" based class commands.
  22. |
  23. */
  24. 'paths' => [app_path('Commands')],
  25. /*
  26. |--------------------------------------------------------------------------
  27. | Added Commands
  28. |--------------------------------------------------------------------------
  29. |
  30. | You may want to include a single command class without having to load an
  31. | entire folder. Here you can specify which commands should be added to
  32. | your list of commands. The console's kernel will try to load them.
  33. |
  34. */
  35. 'add' => [
  36. // ..
  37. ],
  38. /*
  39. |--------------------------------------------------------------------------
  40. | Hidden Commands
  41. |--------------------------------------------------------------------------
  42. |
  43. | Your application commands will always be visible on the application list
  44. | of commands. But you can still make them "hidden" specifying an array
  45. | of commands below. All "hidden" commands can still be run/executed.
  46. |
  47. */
  48. 'hidden' => [
  49. NunoMaduro\LaravelConsoleSummary\SummaryCommand::class,
  50. Symfony\Component\Console\Command\DumpCompletionCommand::class,
  51. Symfony\Component\Console\Command\HelpCommand::class,
  52. Illuminate\Console\Scheduling\ScheduleRunCommand::class,
  53. Illuminate\Console\Scheduling\ScheduleListCommand::class,
  54. Illuminate\Console\Scheduling\ScheduleFinishCommand::class,
  55. Illuminate\Foundation\Console\VendorPublishCommand::class,
  56. LaravelZero\Framework\Commands\StubPublishCommand::class,
  57. ],
  58. /*
  59. |--------------------------------------------------------------------------
  60. | Removed Commands
  61. |--------------------------------------------------------------------------
  62. |
  63. | Do you have a service provider that loads a list of commands that
  64. | you don't need? No problem. Laravel Zero allows you to specify
  65. | below a list of commands that you don't to see in your app.
  66. |
  67. */
  68. 'remove' => [
  69. // ..
  70. ],
  71. ];