BossBey File Manager
PHP:
8.2.30
OS:
Linux
User:
imagivibe
Root
/
home
/
imagivibe
/
public_html
/
app.imagivibe.com
/
vendor
/
doctrine
/
dbal
/
src
/
ArrayParameters
/
Exception
📤 Upload
📝 New File
📁 New Folder
Close
Editing: MissingPositionalParameter.php
<?php namespace Doctrine\DBAL\ArrayParameters\Exception; use Doctrine\DBAL\ArrayParameters\Exception; use LogicException; use function sprintf; /** @internal */ class MissingPositionalParameter extends LogicException implements Exception { public static function new(int $index): self { return new self( sprintf('Positional parameter at index %d does not have a bound value.', $index), ); } }
Save
Cancel