Show post authors and action buttons

This commit is contained in:
Micha
2026-01-11 01:54:45 +01:00
parent c8d2bd508e
commit bbbf8eb6c1
5 changed files with 62 additions and 7 deletions

View File

@@ -4,7 +4,7 @@
use Illuminate\Foundation\Application;
use Symfony\Component\Console\Input\ArgvInput;
define('LARAVEL_START', microtime(true));
define(constant_name: 'LARAVEL_START', value: microtime(as_float: true));
// Register the Composer autoloader...
require __DIR__.'/vendor/autoload.php';
@@ -13,6 +13,6 @@ require __DIR__.'/vendor/autoload.php';
/** @var Application $app */
$app = require_once __DIR__.'/bootstrap/app.php';
$status = $app->handleCommand(new ArgvInput);
$status = $app->handleCommand(input: new ArgvInput);
exit($status);