<?phpnamespaceDoctrine\DBAL;/** * Contains all DBAL LockModes. */classLockMode{publicconstNONE=0;publicconstOPTIMISTIC=1;publicconstPESSIMISTIC_READ=2;publicconstPESSIMISTIC_WRITE=4;/** * Private constructor. This class cannot be instantiated. * * @codeCoverageIgnore */finalprivatefunction__construct(){}}