@@ -73,7 +73,7 @@ discard block |
||
| 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 |
||
| 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 | |