@@ -44,7 +44,7 @@ |
||
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(); |
@@ -41,19 +41,19 @@ |
||
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 { |