Skip to content
Snippets Groups Projects
Commit 0e3723c4 authored by Tim van Dijen's avatar Tim van Dijen
Browse files

Fix indentation and line length

parent 3a707ec6
No related branches found
No related tags found
No related merge requests found
1 0 → 100644
Merge branch 'simplesamlphp-1.19' of https://github.com/simplesamlphp/simplesamlphp into simplesamlphp-1.19
# Please enter a commit message to explain why this merge is necessary,
# especially if it merges an updated upstream into a topic branch.
#
# Lines starting with '#' will be ignored, and an empty message aborts
# the commit.
...@@ -124,9 +124,10 @@ class LogoutStore ...@@ -124,9 +124,10 @@ class LogoutStore
'ALTER TABLE ' . $store->prefix . 'ALTER TABLE ' . $store->prefix .
'_saml_LogoutStore ALTER COLUMN _authSource TYPE VARCHAR(255)']; '_saml_LogoutStore ALTER COLUMN _authSource TYPE VARCHAR(255)'];
break; break;
case 'sqlsrv': case 'sqlsrv':
$update = [ $update = [
'ALTER TABLE ' . $store->prefix . '_saml_LogoutStore ALTER COLUMN _authSource VARCHAR(255) NOT NULL' 'ALTER TABLE ' . $store->prefix .
'_saml_LogoutStore ALTER COLUMN _authSource VARCHAR(255) NOT NULL'
]; ];
break; break;
case 'sqlite': case 'sqlite':
......
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