Skip to content

Commit

Permalink
Apply fixes from StyleCI (#131)
Browse files Browse the repository at this point in the history
  • Loading branch information
mikeerickson committed Oct 12, 2018
1 parent e201ce9 commit 2b4248c
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion src/PrinterTrait.php
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ public function __construct(
$this->maxNumberOfColumns = $this->getWidth();
$this->maxClassNameLength = min((int) ($this->maxNumberOfColumns / 2), $this->maxClassNameLength);

if($this->hideNamespace) {
if ($this->hideNamespace) {
$this->maxClassNameLength = 32;
}

Expand Down
1 change: 0 additions & 1 deletion tests/Feature/PrinterCoreTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ public function should_produce_syntax_error()
$this->pass();
}


/** @test */
public function it_should_fail(): void
{
Expand Down

0 comments on commit 2b4248c

Please sign in to comment.