Skip to content

Commit

Permalink
Apply fixes from StyleCI (#170)
Browse files Browse the repository at this point in the history
  • Loading branch information
mikeerickson committed Sep 23, 2020
1 parent 4d075a3 commit 6f34859
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/PrinterTrait.php
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,7 @@ private function loadUserConfiguration()
$this->anyBarPort = $this->getConfigOption('cd-printer-anybar-port');
$this->dontFormatClassName = $this->getConfigOption('cd-printer-dont-format-classname');

if (!strpos(php_uname(), "Darwin")) {
if (!strpos(php_uname(), 'Darwin')) {
$this->anyBarEnabled = false;
}

Expand Down
2 changes: 1 addition & 1 deletion src/PrinterTrait8.php
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,7 @@ private function loadUserConfiguration()
$this->anyBarPort = $this->getConfigOption('cd-printer-anybar-port');
$this->dontFormatClassName = $this->getConfigOption('cd-printer-dont-format-classname');

if (!strpos(php_uname(), "Darwin")) {
if (!strpos(php_uname(), 'Darwin')) {
$this->anyBarEnabled = false;
}

Expand Down

0 comments on commit 6f34859

Please sign in to comment.