Skip to content

Commit

Permalink
Merge pull request #164 from antonioribeiro/analysis-XaPaLV
Browse files Browse the repository at this point in the history
Apply fixes from StyleCI

[ci skip] [skip ci]
  • Loading branch information
antonioribeiro authored Oct 4, 2019
2 parents 9cd4656 + 3435b55 commit a7533f1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Checkers/DirectoryAndFilePresence.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ class DirectoryAndFilePresence extends Base
*/
public function check()
{
list($messages, $result) = $this->checkPresence();
[$messages, $result] = $this->checkPresence();

if ($result->count() == 0) {
return $this->makeHealthyResult();
Expand Down
2 changes: 1 addition & 1 deletion src/Checkers/Http.php
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public function check()
$health = [];

foreach ($this->getResourceUrlArray() as $url) {
list($healthy, $message) = $this->checkWebPage(
[$healthy, $message] = $this->checkWebPage(
$this->makeUrlWithScheme($url, $this->secure),
$this->secure
);
Expand Down

0 comments on commit a7533f1

Please sign in to comment.