10000 GitHub - sunaoka/php-postgresql-errors at 9d05537b28ca5584477042505773924a6d4503bd
[go: up one dir, main page]

Skip to content

PostgreSQL Error Codes for PHP

License

Notifications You must be signed in to change notification settings

sunaoka/php-postgresql-errors

Repository files navigation

PostgreSQL Error Codes for PHP

License PHP Test codecov


Installation

composer require sunaoka/php-postgresql-errors

Usage

<?php

use Sunaoka\PostgresError\PostgresError;

echo PostgresError::UNIQUE_VIOLATION;
// => 23505
0