🚀 Advanced Web Server Manager
Complete File Manager & Terminal - Standalone Version
By Sid Gifari | Gifari Industries
Current path:
/
/
home2
/
birthday
/
bill.com
/
laravel
/
vendor
/
laravel
/
pail
/
src
/
Guards
✏️
Editing: EnsurePcntlIsAvailable.php
<?php namespace Laravel\Pail\Guards; use RuntimeException; class EnsurePcntlIsAvailable { /** * Checks if the pcntl extension is available. */ public static function check(): void { if (! function_exists('pcntl_fork')) { throw new RuntimeException('The [pcntl] extension is required to run Pail.'); } } }
💾 Save Changes
❌ Cancel