@@ -91,7 +91,7 @@ |
||
91 | 91 | $this->currentConnection = new PDO( |
92 | 92 | sprintf(self::DSN, $this->host, $this->port, $this->databaseName), $this->user, $this->password |
93 | 93 | ); |
94 | - $this->currentConnection->setAttribute( PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION ); |
|
94 | + $this->currentConnection->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION); |
|
95 | 95 | $this->currentConnection->setAttribute(PDO::ATTR_EMULATE_PREPARES, false); |
96 | 96 | $this->currentConnection->setAttribute(PDO::MYSQL_ATTR_DIRECT_QUERY, false); |
97 | 97 | } |
@@ -354,7 +354,7 @@ |
||
354 | 354 | { |
355 | 355 | $self = $this; |
356 | 356 | $rows = array_map( |
357 | - function (Candidate $candidate) use ($self) { |
|
357 | + function(Candidate $candidate) use ($self) { |
|
358 | 358 | $status = $candidate->getStatus(); |
359 | 359 | |
360 | 360 | switch ($status) { |