ManaPHP\Db::begin PHP Method

begin() public method

Starts a transaction in the connection
public begin ( ) : void
return void
    public function begin()
    {
        if ($this->_transactionLevel === 0) {
            $this->fireEvent('db:beginTransaction');
            if (!$this->_pdo->beginTransaction()) {
                throw new DbException('beginTransaction failed.');
            }
        }
        $this->_transactionLevel++;
    }