Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
B
Bootcamp
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Sopranita Panjaitan
Bootcamp
Commits
caa9b0e7
Commit
caa9b0e7
authored
Dec 29, 2023
by
Sopranita Panjaitan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Delete artisan
parent
ea286ffe
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
53 deletions
+0
-53
artisan
artisan
+0
-53
No files found.
artisan
deleted
100644 → 0
View file @
ea286ffe
#!/usr/bin/env php
<?php
define
(
'LARAVEL_START'
,
microtime
(
true
));
/*
|--------------------------------------------------------------------------
| Register The Auto Loader
|--------------------------------------------------------------------------
|
| Composer provides a convenient, automatically generated class loader
| for our application. We just need to utilize it! We'll require it
| into the script here so that we do not have to worry about the
| loading of any of our classes manually. It's great to relax.
|
*/
require
__DIR__
.
'/vendor/autoload.php'
;
$app
=
require_once
__DIR__
.
'/bootstrap/app.php'
;
/*
|--------------------------------------------------------------------------
| Run The Artisan Application
|--------------------------------------------------------------------------
|
| When we run the console application, the current CLI command will be
| executed in this console and the response sent back to a terminal
| or another output device for the developers. Here goes nothing!
|
*/
$kernel
=
$app
->
make
(
Illuminate\Contracts\Console\Kernel
::
class
);
$status
=
$kernel
->
handle
(
$input
=
new
Symfony\Component\Console\Input\ArgvInput
,
new
Symfony\Component\Console\Output\ConsoleOutput
);
/*
|--------------------------------------------------------------------------
| Shutdown The Application
|--------------------------------------------------------------------------
|
| Once Artisan has finished running, we will fire off the shutdown events
| so that any final work may be done by the application before we shut
| down the process. This is the last thing to happen to the request.
|
*/
$kernel
->
terminate
(
$input
,
$status
);
exit
(
$status
);
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment