Source
private static function createException($type, Exception $e)
{
return new RealNotFoundException('No PSR-17 ' . $type . ' found. Install a package from this list: https://packagist.org/providers/psr/http-factory-implementation', 0, $e);
}
This function’s access is marked private. This means it is not intended for use by plugin or theme developers, only by core. It is listed here for completeness.
private static function createException($type, Exception $e)
{
return new RealNotFoundException('No PSR-17 ' . $type . ' found. Install a package from this list: https://packagist.org/providers/psr/http-factory-implementation', 0, $e);
}
User Contributed Notes
You must log in before being able to contribute a note or feedback.