File manager - Edit - /var/www/html/gop/api/vendor/doctrine/dbal/src/Schema/ForeignKeyConstraint/Deferrability.php
Back
<?php declare(strict_types=1); namespace Doctrine\DBAL\Schema\ForeignKeyConstraint; /** * Represents the information about whether the constraint is or can be deferred. */ enum Deferrability: string { case NOT_DEFERRABLE = 'NOT DEFERRABLE'; case DEFERRABLE = 'DEFERRABLE'; case DEFERRED = 'INITIALLY DEFERRED'; /** * Returns the SQL representation of the referential action. */ public function toSQL(): string { return $this->value; } }
| ver. 1.4 |
Github
|
.
| PHP 8.3.28 | Generation time: 0.06 |
proxy
|
phpinfo
|
Settings