File "RunnableSolutionsEnabled.php"
Full Path: /home/clickysoft/public_html/jmapi5.clickysoft.net/vendor/spatie/laravel-ignition/src/Http/Middleware/RunnableSolutionsEnabled.php
File size: 346 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace Spatie\LaravelIgnition\Http\Middleware;
use Closure;
use Spatie\LaravelIgnition\Support\RunnableSolutionsGuard;
class RunnableSolutionsEnabled
{
public function handle($request, Closure $next)
{
if (! RunnableSolutionsGuard::check()) {
abort(404);
}
return $next($request);
}
}