for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Doctrine\DBAL\Driver\Mysqli\Exception;
use Doctrine\DBAL\Driver\Mysqli\MysqliException;
use function sprintf;
final class FailedReadingStreamOffset extends MysqliException
{
public static function new(int $offset) : self
return new self(sprintf('Failed reading the stream resource for parameter offset %d.', $offset));
}