• File: HealthCheckController.php
  • Full Path: /home/masbinta/public_html/core/vendor/facade/ignition/src/Http/Controllers/HealthCheckController.php
  • File size: 496 bytes
  • MIME-type: text/x-php
  • Charset: utf-8
<?php

namespace Facade\Ignition\Http\Controllers;

use Illuminate\Support\Facades\Artisan;
use Illuminate\Support\Str;

class HealthCheckController
{
    public function __invoke()
    {
        return [
            'can_execute_commands' => $this->canExecuteCommands(),
        ];
    }

    protected function canExecuteCommands(): bool
    {
        Artisan::call('help', ['--version']);

        $output = Artisan::output();

        return Str::contains($output, app()->version());
    }
}