Skip to content

Commit

Permalink
Style fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
leonjza committed Jan 1, 2017
1 parent 318fc64 commit 4a232d1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Repositories/Corporation/Contracts.php
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ public function getCorporationContractsItems(int $corporation_id, int $contract_
'invGroups.groupID')
->where('corporationID', $corporation_id)
->where('contractID', $contract_id)
->take(150) // Limit to 150 for now. Some of these contracts are insanely big.
->take(150)// Limit to 150 for now. Some of these contracts are insanely big.
->get();

}
Expand Down
2 changes: 1 addition & 1 deletion src/Settings/Settings.php
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ public static function get_key_prefix($name)
'No prefix defined. Have you extended and declared $prefix?');

// Prefix user keys with the session_id
if(static::$scope != 'global')
if (static::$scope != 'global')
return implode('.', [Session::getId(), static::$prefix, $name]);

// Global keys only with the global prefix.
Expand Down

0 comments on commit 4a232d1

Please sign in to comment.