Completed
Push — feature/0.7.0 ( b44828...201ef6 )
by Ryuichi
03:01
created
WebStream/Database/Driver/DatabaseDriver.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -3,7 +3,6 @@
 block discarded – undo
3 3
 
4 4
 use WebStream\DI\Injector;
5 5
 use WebStream\Module\Container;
6
-use Doctrine\DBAL\Connection;
7 6
 
8 7
 /**
9 8
  * DatabaseDriver
Please login to merge, or discard this patch.
WebStream/Database/DatabaseManager.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -114,7 +114,7 @@
 block discarded – undo
114 114
             $isolationLevel === Connection::TRANSACTION_SERIALIZABLE) {
115 115
             $this->connection->setTransactionIsolation($isolationLevel);
116 116
         } else {
117
-            throw new DatabaseException("Invalid transaction isolation level: " . $isolationLevel);
117
+            throw new DatabaseException("Invalid transaction isolation level: ".$isolationLevel);
118 118
         }
119 119
 
120 120
         $this->logger->debug("Transaction start.");
Please login to merge, or discard this patch.