Passed
Pull Request — master (#7)
by Tim
03:30
created
src/Controller/CAS.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -106,7 +106,7 @@
 block discarded – undo
106 106
         /** @var \SimpleSAML\Module\cas\Auth\Source\CAS|null $source */
107 107
         $source = $this->authSource::getById($sourceId);
108 108
         if ($source === null) {
109
-            throw new Exception('Could not find authentication source with id ' . $sourceId);
109
+            throw new Exception('Could not find authentication source with id '.$sourceId);
110 110
         }
111 111
 
112 112
         $source->finalStep($state);
Please login to merge, or discard this patch.
src/Auth/Source/CAS.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -220,7 +220,7 @@
 block discarded – undo
220 220
 
221 221
         $config = Configuration::loadFromArray(
222 222
             $this->ldapConfig,
223
-            'Authentication source ' . var_export($this->authId, true),
223
+            'Authentication source '.var_export($this->authId, true),
224 224
         );
225 225
         if (!empty($this->ldapConfig['servers'])) {
226 226
             $ldap = new Ldap(
Please login to merge, or discard this patch.