Files
glastree/vendor/laravel/pail/src/Guards/EnsurePcntlIsAvailable.php
T

19 lines
362 B
PHP
Raw Normal View History

2026-05-26 08:14:29 +02:00
<?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.');
}
}
}