Skip to content
Snippets Groups Projects
Commit 8695085a authored by Thijs Kinkhorst's avatar Thijs Kinkhorst
Browse files

Fix build pedantisim re long lines

parent 9e954f4a
No related branches found
No related tags found
No related merge requests found
......@@ -149,7 +149,10 @@ class SubjectID extends Auth\ProcessingFilter
}
$userID = $state['Attributes'][$this->identifyingAttribute][0];
Assert::stringNotEmpty($userID, 'saml:' . static::NAME . ': \'identifyingAttribute\' cannot be an empty string.');
Assert::stringNotEmpty(
$userID,
'saml:' . static::NAME . ': \'identifyingAttribute\' cannot be an empty string.'
);
return $userID;
}
......
......@@ -223,7 +223,9 @@ class SubjectIDTest extends TestCase
];
$this->expectException(RuntimeException::class);
$this->expectExceptionMessage('saml:SubjectID: Generated ID \'a1398u9u25@example\' can hardly be considered globally unique.');
$this->expectExceptionMessage(
'saml:SubjectID: Generated ID \'a1398u9u25@example\' can hardly be considered globally unique.'
);
self::processFilter($config, $request);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment