From 2f0b28763362d83989dc387c2c026d9de00dadaa Mon Sep 17 00:00:00 2001 From: sbuberl Date: Mon, 4 Mar 2019 19:22:36 -0500 Subject: [PATCH] #15 Fixes errors --- src/Environment.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Environment.php b/src/Environment.php index 205e736..5e1cef9 100755 --- a/src/Environment.php +++ b/src/Environment.php @@ -365,7 +365,7 @@ public function commit() $this->transaction = null; return $success; } else { - return $this->set_error('Can commit because not inside a transaction'); + return $this->set_error('Can not commit because not inside a transaction'); } } @@ -376,7 +376,7 @@ public function rollback() $this->transaction = null; return $success; } else { - return $this->set_error('Can rollback because not inside a transaction'); + return $this->set_error('Can not rollback because not inside a transaction'); } }