@@ -81,7 +81,7 @@ |
||
| 81 | 81 | switch ($option) { |
| 82 | 82 | case 'identity_class': |
| 83 | 83 | case 'attribute_map_class': |
| 84 | - $this->{$option} = (string) $value; |
|
| 84 | + $this->{$option} = (string)$value; |
|
| 85 | 85 | |
| 86 | 86 | break; |
| 87 | 87 | default: |
@@ -73,7 +73,7 @@ |
||
| 73 | 73 | |
| 74 | 74 | break; |
| 75 | 75 | case 'attr_sync_cache': |
| 76 | - $this->attr_sync_cache = (int) $value; |
|
| 76 | + $this->attr_sync_cache = (int)$value; |
|
| 77 | 77 | |
| 78 | 78 | break; |
| 79 | 79 | case 'identity_attribute': |
@@ -87,7 +87,7 @@ |
||
| 87 | 87 | switch ($option) { |
| 88 | 88 | case 'provider_url': |
| 89 | 89 | case 'token_validation_url': |
| 90 | - $this->{$option} = (string) $value; |
|
| 90 | + $this->{$option} = (string)$value; |
|
| 91 | 91 | unset($config[$option]); |
| 92 | 92 | |
| 93 | 93 | break; |
@@ -94,21 +94,21 @@ |
||
| 94 | 94 | |
| 95 | 95 | switch ($value['type']) { |
| 96 | 96 | case 'array': |
| 97 | - $arr = (array) $data[$value['attr']]; |
|
| 97 | + $arr = (array)$data[$value['attr']]; |
|
| 98 | 98 | unset($arr['count']); |
| 99 | 99 | $attrs[$attr] = $arr; |
| 100 | 100 | |
| 101 | 101 | break; |
| 102 | 102 | case 'string': |
| 103 | - $attrs[$attr] = (string) $store; |
|
| 103 | + $attrs[$attr] = (string)$store; |
|
| 104 | 104 | |
| 105 | 105 | break; |
| 106 | 106 | case 'int': |
| 107 | - $attrs[$attr] = (int) $store; |
|
| 107 | + $attrs[$attr] = (int)$store; |
|
| 108 | 108 | |
| 109 | 109 | break; |
| 110 | 110 | case 'bool': |
| 111 | - $attrs[$attr] = (bool) $store; |
|
| 111 | + $attrs[$attr] = (bool)$store; |
|
| 112 | 112 | |
| 113 | 113 | break; |
| 114 | 114 | default: |
@@ -177,11 +177,11 @@ |
||
| 177 | 177 | case 'binddn': |
| 178 | 178 | case 'bindpw': |
| 179 | 179 | case 'basedn': |
| 180 | - $this->{$option} = (string) $value; |
|
| 180 | + $this->{$option} = (string)$value; |
|
| 181 | 181 | |
| 182 | 182 | break; |
| 183 | 183 | case 'tls': |
| 184 | - $this->tls = (bool) $value; |
|
| 184 | + $this->tls = (bool)$value; |
|
| 185 | 185 | |
| 186 | 186 | break; |
| 187 | 187 | default: |