Skip to content

Commit 4542aff

Browse files
committed
TASK: Fix StyleCI complaint
1 parent 7760963 commit 4542aff

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Neos.Flow/Classes/Log/ThrowableStorage/FileStorage.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,7 @@ protected function renderErrorInfo(\Throwable $error, array $additionalData = []
219219
*/
220220
protected function getErrorLogMessage(\Throwable $error)
221221
{
222-
// getCode() does not always return an integer, e.g. in PDOException it can be a string
222+
// getCode() does not always return an integer, e.g. in PDOException it can be a string
223223
if (is_int($error->getCode()) && $error->getCode() > 0) {
224224
$errorCodeString = ' #' . $error->getCode();
225225
} else {

0 commit comments

Comments
 (0)