Skip to content

Commit

Permalink
Merge pull request #7 from GaryJones/patch-1
Browse files Browse the repository at this point in the history
PHPUnit 5.1: Add addWarning() from interface
  • Loading branch information
adri committed Jan 3, 2016
2 parents 2e47afc + 8ae66db commit 3538ac1
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions PHPUnit/Util/Log/VCR.php
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,19 @@ public function __construct(array $options = array())
public function addError(PHPUnit_Framework_Test $test, Exception $e, $time)
{
}

/**
* A warning occurred.
*
* @param PHPUnit_Framework_Test $test
* @param PHPUnit_Framework_Warning $e
* @param float $time
*
* @since Method available since Release 5.1.0
*/
public function addWarning(PHPUnit_Framework_Test $test, PHPUnit_Framework_Warning $e, $time)
{
}

/**
* A failure occurred.
Expand Down

0 comments on commit 3538ac1

Please sign in to comment.