Skip to content

Commit

Permalink
Updated some method signatures to be compatible with Phpunit 7.1.5 (#17)
Browse files Browse the repository at this point in the history
* Updated some method signatures to be compatible with Phpunit 7.1.5

* Updated dependency versions
  • Loading branch information
poisa authored and rudowastaken committed May 10, 2018
1 parent a02e9bd commit e3344aa
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 38 deletions.
72 changes: 36 additions & 36 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions src/Printer.php
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ class Printer extends ResultPrinter
/**
* {@inheritdoc}
*/
protected function writeProgress($progress) : void
protected function writeProgress(string $progress) : void
{
$this->numTestsRun++;

Expand Down Expand Up @@ -126,7 +126,7 @@ public function endTest(Test $test, float $time) : void
*
* We'll handle the coloring ourselves.
*/
protected function writeProgressWithColor($color, $buffer) : void
protected function writeProgressWithColor(string $color, string $buffer) : void
{
$this->writeProgress($buffer);
}
Expand Down

0 comments on commit e3344aa

Please sign in to comment.