Merge pull request #356 from heelc29/php-cs

fix php cs
This commit is contained in:
Roland Dalmulder 2023-08-14 12:38:09 +02:00 committed by GitHub
commit 81089ae896
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 8 additions and 2 deletions

View File

@ -301,7 +301,10 @@ class PullsModel extends ListModel
$pulls = json_decode($pullsResponse->body);
} catch (UnexpectedResponse $exception) {
throw new RuntimeException(
Text::sprintf('COM_PATCHTESTER_ERROR_GITHUB_FETCH', $exception->getMessage()), $exception->getCode(), $exception);
Text::sprintf('COM_PATCHTESTER_ERROR_GITHUB_FETCH', $exception->getMessage()),
$exception->getCode(),
$exception
);
}
// If this is page 1, let's check to see if we need to paginate
@ -390,7 +393,10 @@ class PullsModel extends ListModel
$this->getDatabase()->execute();
} catch (RuntimeException $exception) {
throw new RuntimeException(
Text::sprintf('COM_PATCHTESTER_ERROR_INSERT_DATABASE', $exception->getMessage()), $exception->getCode(), $exception);
Text::sprintf('COM_PATCHTESTER_ERROR_INSERT_DATABASE', $exception->getMessage()),
$exception->getCode(),
$exception
);
}
if ($labels) {