Code style fixes.

This commit is contained in:
Dmitry Khomutov 2017-05-08 12:32:01 +07:00
commit efbf2650bb
No known key found for this signature in database
GPG key ID: 7EB36C9576F9ECB9
5 changed files with 121 additions and 123 deletions

View file

@ -328,7 +328,7 @@ class BuildStore extends Store
$stmt->bindValue(':id', $build->getId(), \PDO::PARAM_INT);
$stmt->bindValue(':status_current', $build->getStatus(), \PDO::PARAM_INT);
$stmt->bindValue(':status_new', $status, \PDO::PARAM_INT);
return ($stmt->execute() and ($stmt->rowCount() == 1));
return ($stmt->execute() && ($stmt->rowCount() == 1));
} catch (\Exception $e) {
return false;
}