Skip to content

Commit

Permalink
Code reformatted
Browse files Browse the repository at this point in the history
  • Loading branch information
slakbal committed Sep 22, 2017
1 parent 1d20112 commit b6e98be
Show file tree
Hide file tree
Showing 4 changed files with 279 additions and 299 deletions.
10 changes: 6 additions & 4 deletions src/GotoAbstract.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,14 @@ function state($refresh = false)
}

if ($this->hasAccessObject()) {
return ['state' => 'Access object available',
'accessObject' => $this->getAccessObject(),
return [
'state' => 'Access object available',
'accessObject' => $this->getAccessObject(),
];
} else {
return ['state' => 'No access object available',
'accessObject' => null,
return [
'state' => 'No access object available',
'accessObject' => null,
];
}
}
Expand Down
Loading

0 comments on commit b6e98be

Please sign in to comment.