Completed
Push — master ( 571897...eec500 )
by Edgard
15:36
created
src/Connection.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -73,7 +73,7 @@  discard block
 block discarded – undo
73 73
     {
74 74
         parent::initConnection();
75 75
 
76
-        if($this->isISeries === null){
76
+        if ($this->isISeries === null) {
77 77
             try {
78 78
                 $stmt = $this->pdo->query('SELECT * FROM QSYS2.SYSTABLES FETCH FIRST 1 ROW ONLY');
79 79
                 $this->isISeries = boolval($stmt);
@@ -82,7 +82,7 @@  discard block
 block discarded – undo
82 82
             }
83 83
         }
84 84
 
85
-        if($this->defaultSchema && !$this->isISeries){
85
+        if ($this->defaultSchema && !$this->isISeries) {
86 86
             $this->pdo->exec('SET CURRENT SCHEMA ' . $this->pdo->quote($this->defaultSchema));
87 87
         }
88 88
         
Please login to merge, or discard this patch.