Completed
Push — master ( e258ca...1fbbc1 )
by Edgard
02:39
created
src/Connection.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -73,11 +73,11 @@
 block discarded – undo
73 73
     {
74 74
         parent::initConnection();
75 75
 
76
-        if($this->defaultSchema){
76
+        if ($this->defaultSchema) {
77 77
             $this->pdo->exec('SET CURRENT SCHEMA ' . $this->pdo->quote($this->defaultSchema));
78 78
         }
79 79
         
80
-        if($this->isISeries === null){
80
+        if ($this->isISeries === null) {
81 81
             try {
82 82
                 $stmt = $this->pdo->query('SELECT * FROM QSYS2.SYSTABLES FETCH FIRST 1 ROW ONLY');
83 83
                 $this->isIseries = boolval($stmt);
Please login to merge, or discard this patch.
src/Schema.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -54,7 +54,7 @@
 block discarded – undo
54 54
         'timestmp'   => self::TYPE_TIMESTAMP
55 55
     ];
56 56
 
57
-   /**
57
+    /**
58 58
      * @inheritdoc
59 59
      */
60 60
     public function createQueryBuilder()
Please login to merge, or discard this patch.