/
home
/
obinna
/
html
/
boazapp
/
vendor
/
doctrine
/
orm
/
lib
/
Doctrine
/
ORM
/
Internal
/
CommitOrder
/
Upload File
HOME
<?php declare(strict_types=1); namespace Doctrine\ORM\Internal\CommitOrder; /** @internal */ final class VertexState { public const NOT_VISITED = 0; public const IN_PROGRESS = 1; public const VISITED = 2; private function __construct() { } }