chore: code styling via pint
This commit is contained in:
@@ -1,10 +1,10 @@
|
||||
<?php
|
||||
|
||||
// Adjust this path if your file location is different
|
||||
require __DIR__ . '/vendor/autoload.php';
|
||||
require __DIR__.'/vendor/autoload.php';
|
||||
|
||||
// Bootstrap the Laravel application
|
||||
$app = require_once __DIR__ . '/bootstrap/app.php';
|
||||
$app = require_once __DIR__.'/bootstrap/app.php';
|
||||
|
||||
// Make the Console Kernel instance
|
||||
$kernel = $app->make(Illuminate\Contracts\Console\Kernel::class);
|
||||
@@ -20,5 +20,5 @@ try {
|
||||
echo "Output:\n$output";
|
||||
|
||||
} catch (\Exception $e) {
|
||||
echo "Error running Artisan command: " . $e->getMessage();
|
||||
echo 'Error running Artisan command: '.$e->getMessage();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user