<?phpdeclare(strict_types=1);namespaceDoctrine\DBAL\Driver\OCI8;/** * Encapsulates the execution mode that is shared between the connection and its statements. * * @internal This class is not covered by the backward compatibility promise */finalclassExecutionMode{/** @var bool */private$isAutoCommitEnabled=true;publicfunctionenableAutoCommit():void{$this->isAutoCommitEnabled=true;}publicfunctiondisableAutoCommit():void{$this->isAutoCommitEnabled=false;}publicfunctionisAutoCommitEnabled():bool{return$this->isAutoCommitEnabled;}}