chore: code styling via pint

This commit is contained in:
idevakk
2025-11-14 01:51:35 -08:00
parent 3892c48ef2
commit 90ab79b3a2
121 changed files with 1003 additions and 892 deletions

View File

@@ -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();
}