Passed
Pull Request — master (#1337)
by
unknown
03:06
created
model/BaseConfig.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -44,7 +44,7 @@
 block discarded – undo
44 44
      * @param string $lang preferred language for the literal
45 45
      * @return string string value for the given property, or the default value if not found
46 46
      */
47
-    public function getLiteral($property, $default=null, $lang=null)
47
+    public function getLiteral($property, $default = null, $lang = null)
48 48
     {
49 49
         if (!isset($lang)) {
50 50
             $lang = $this->getEnvLang();
Please login to merge, or discard this patch.
controller/Auth/SimpleSamlPHP/SimpleSamlPHP.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -41,19 +41,19 @@
 block discarded – undo
41 41
 	 * @inheritDoc
42 42
 	 */
43 43
 	public function validate(): bool {
44
-		$authDirectory = $this->model->getConfig()->getLiteral( 'skosmos:authProviderIncludeDirectory' );
44
+		$authDirectory = $this->model->getConfig()->getLiteral('skosmos:authProviderIncludeDirectory');
45 45
 		if (!$authDirectory) {
46 46
 			return false;
47 47
 		}
48 48
 
49
-		$authEntity = $this->model->getConfig()->getLiteral( 'skosmos:authProviderAuthEntity' );
49
+		$authEntity = $this->model->getConfig()->getLiteral('skosmos:authProviderAuthEntity');
50 50
 		if (!$authEntity) {
51 51
 			return false;
52 52
 		} else {
53 53
 			$this->authEntity = $authEntity;
54 54
 		}
55 55
 
56
-		$sspAutoloader = $authDirectory . DIRECTORY_SEPARATOR . 'lib/_autoload.php';
56
+		$sspAutoloader = $authDirectory.DIRECTORY_SEPARATOR.'lib/_autoload.php';
57 57
 		if (!file_exists($sspAutoloader)) {
58 58
 			return false;
59 59
 		} else {
Please login to merge, or discard this patch.