Passed
Branch master (4fd3a2)
by Rémy
02:26
created
Source/Rorm.php 3 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -87,7 +87,7 @@
 block discarded – undo
87 87
      * Please make sure you keep the quoter as long you are needing it.
88 88
      *
89 89
      * @param \PDO $dbh
90
-     * @return callable
90
+     * @return \Closure
91 91
      */
92 92
     public static function getIdentifierQuoter(PDO $dbh = null)
93 93
     {
Please login to merge, or discard this patch.
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,7 +1,7 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * @author Rémy M. Böhler <[email protected]>
4
- */
3
+     * @author Rémy M. Böhler <[email protected]>
4
+     */
5 5
 
6 6
 namespace Rorm;
7 7
 
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -95,12 +95,12 @@
 block discarded – undo
95 95
 
96 96
         if (static::isMySQL($dbh)) {
97 97
             // mysql mode
98
-            return function ($identifier) {
98
+            return function($identifier) {
99 99
                 return '`' . str_replace('`', '``', $identifier) . '`';
100 100
             };
101 101
         } else {
102 102
             // standard sql mode
103
-            return function ($identifier) {
103
+            return function($identifier) {
104 104
                 return '"' . str_replace('"', '""', $identifier) . '"';
105 105
             };
106 106
         }
Please login to merge, or discard this patch.
Source/Query.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,7 +1,7 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * @author Rémy M. Böhler <[email protected]>
4
- */
3
+     * @author Rémy M. Böhler <[email protected]>
4
+     */
5 5
 
6 6
 namespace Rorm;
7 7
 
Please login to merge, or discard this patch.
Source/QueryBuilder.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,7 +1,7 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * @author Rémy M. Böhler <[email protected]>
4
- */
3
+     * @author Rémy M. Böhler <[email protected]>
4
+     */
5 5
 
6 6
 namespace Rorm;
7 7
 
Please login to merge, or discard this patch.
Source/QueryBuilderException.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,7 +1,7 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * @author Rémy M. Böhler <[email protected]>
4
- */
3
+     * @author Rémy M. Böhler <[email protected]>
4
+     */
5 5
 
6 6
 namespace Rorm;
7 7
 
Please login to merge, or discard this patch.