File "AmpNotInstalled.php"
Full Path: /var/www/html/back/vendor/spatie/php-structure-discoverer/src/Exceptions/AmpNotInstalled.php
File size: 269 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace Spatie\StructureDiscoverer\Exceptions;
use Exception;
class AmpNotInstalled extends Exception
{
public static function create(): self
{
return new self('Parallel structure discovery requires amphp/parallel to be installed.');
}
}