Completed
Push — master ( e74426...7415a7 )
by Philip
01:46
created
src/PHPProm/Storage/AbstractStorage.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -15,6 +15,9 @@
 block discarded – undo
15 15
 
16 16
     abstract public function storeMeasurement($prefix, $key, $value);
17 17
 
18
+    /**
19
+     * @param string $prefix
20
+     */
18 21
     abstract public function getMeasurements($prefix, array $keys);
19 22
 
20 23
 }
Please login to merge, or discard this patch.
src/PHPProm/Storage/DBALStorage.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@
 block discarded – undo
26 26
     protected $statementKeyUpdate;
27 27
 
28 28
     protected function buildStatements() {
29
-        $queryBuilder             = $this->connection->createQueryBuilder()
29
+        $queryBuilder = $this->connection->createQueryBuilder()
30 30
             ->select('COUNT(`key`) AS amount')
31 31
             ->from('`'.$this->table.'`')
32 32
             ->where('`key` = ?')
Please login to merge, or discard this patch.