Skip to content

Commit

Permalink
Fix missing semicolon, consistently use trailing commas
Browse files Browse the repository at this point in the history
  • Loading branch information
thekid committed Mar 29, 2024
1 parent c8e8ad7 commit 4ffb505
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/main/php/web/auth/cas/CasFlow.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -93,10 +93,10 @@ public function authenticate($request, $response, $session) {
$self+= yield new ValueOf([], ['*' => function(&$self, $name) {
$self[str_replace('cas:', '', $name)]= yield;
}]);
}
])
},
]);
},
'*' => function(&$self, $name) { $self[$name]= yield; }
'*' => function(&$self, $name) { $self[$name]= yield; },
]));
} catch (Throwable $e) {
throw new Error(500, 'UNEXPECTED: Streaming error', $e);
Expand Down

0 comments on commit 4ffb505

Please sign in to comment.