Completed
Push — master ( 117114...c02abd )
by smiley
04:21
created
src/Drivers/DriverInterface.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -25,6 +25,7 @@
 block discarded – undo
25 25
 	 * @param \chillerlan\Settings\SettingsContainerInterface $options
26 26
 	 * @param \Psr\SimpleCache\CacheInterface|null  $cache
27 27
 	 * @param \Psr\Log\LoggerInterface|null         $logger
28
+	 * @return void
28 29
 	 */
29 30
 	public function __construct(SettingsContainerInterface $options, CacheInterface $cache = null, LoggerInterface $logger = null);
30 31
 
Please login to merge, or discard this patch.
src/DatabaseAbstract.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -65,7 +65,7 @@
 block discarded – undo
65 65
 			throw new DatabaseException('invalid driver interface');
66 66
 		}
67 67
 
68
-		$this->query   = new QueryBuilder($this->driver, $this->logger);
68
+		$this->query = new QueryBuilder($this->driver, $this->logger);
69 69
 	}
70 70
 
71 71
 	/**
Please login to merge, or discard this patch.