8000 GitHub - sunaoka/php-postgresql-errors at 2e6b6a1a28f2e3b2fd3bc26c7d8b5647b4f2d8bb
[go: up one dir, main page]

Skip to content

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