Completed
Push — master ( 316465...cf7a4b )
by Nielsen
333:01 queued 311:11
created
src/Core/SQL/Command/SQLSelect.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@
 block discarded – undo
24 24
      * SQLSelect constructor.
25 25
      *
26 26
      * @param PersistenceService $persistence
27
-     * @param $entity
27
+     * @param string $entity
28 28
      */
29 29
     public function __construct(PersistenceService $persistence, $entity) {
30 30
         parent::__construct($entity);
Please login to merge, or discard this patch.
src/Core/SQL/Command/SQLUpdate.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@
 block discarded – undo
22 22
      * SQLUpdate constructor.
23 23
      *
24 24
      * @param PersistenceService $persistence
25
-     * @param $entity
25
+     * @param string $entity
26 26
      */
27 27
     public function __construct(PersistenceService $persistence, $entity) {
28 28
         parent::__construct($persistence, $entity);
Please login to merge, or discard this patch.
src/Core/SQL/PersistenceService.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -14,6 +14,9 @@
 block discarded – undo
14 14
         return [];
15 15
     }
16 16
 
17
+    /**
18
+     * @param string $tableName
19
+     */
17 20
     public function getColsOfTable($tableName) {
18 21
         return array_keys($this->getMetaData($tableName));
19 22
     }
Please login to merge, or discard this patch.
src/Core/Filter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@
 block discarded – undo
30 30
         $param = "p_" . count($this->params);
31 31
         $this->params[$param] = $value;
32 32
         // TODO check the ':' with NoSQL
33
-        $condition = new Condition($col, $op, $value === null ?  null : ":" . $param);
33
+        $condition = new Condition($col, $op, $value === null ? null : ":" . $param);
34 34
         if ($this->predicate != null) {
35 35
             $method = $this->method;
36 36
             $condition->$method($this->predicate);
Please login to merge, or discard this patch.