Skip to content

Commit

Permalink
#15 Fixes errors
Browse files Browse the repository at this point in the history
  • Loading branch information
sbuberl committed Mar 5, 2019
1 parent 72f4f31 commit 2f0b287
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Environment.php
Original file line number Diff line number Diff line change
Expand Up @@ -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');
}
}

Expand All @@ -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');
}
}

Expand Down

0 comments on commit 2f0b287

Please sign in to comment.