Skip to content

Commit

Permalink
Fix PSR2-related errors.
Browse files Browse the repository at this point in the history
  • Loading branch information
terrencegf committed Aug 24, 2018
1 parent 1c1079e commit c14e118
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/Service/Content.php
Original file line number Diff line number Diff line change
Expand Up @@ -2485,8 +2485,8 @@ public static function getCompositeIdPList($incommonidps = false)
// Re-sort the retarray by Display_Name for correct alphabetization.
uasort($retarray, function ($a, $b) {
return strcasecmp(
$a['Display_Name'],
$b['Display_Name']
$a['Display_Name'],
$b['Display_Name']
);
});

Expand Down
4 changes: 2 additions & 2 deletions src/Service/IdpList.php
Original file line number Diff line number Diff line change
Expand Up @@ -1023,10 +1023,10 @@ public function isSIRTFI($entityID)
/**
* getInCommonIdPs
*
* This method returns a two-dimensional array of InCommon IdPs.
* This method returns a two-dimensional array of InCommon IdPs.
* The primary key of the array is the entityID, the secondary key is
* either 'Organization_Name' (corresponds to OrganizationDisplayName)
* or 'Display_Name' (corresponds to mdui:DisplayName).
* or 'Display_Name' (corresponds to mdui:DisplayName).
* If a non-null parameter is passed in it returns a subset of the
* InCommon IdPs. 0 means list only non-whitelisted IdPs, 1 means list
* only whitelisted IdPs, 2 means list only R&S IdPs.
Expand Down

0 comments on commit c14e118

Please sign in to comment.