From 95eccd719b6080bb7c6c20ac749a90b7ae76de7a Mon Sep 17 00:00:00 2001 From: Jorge Mudry Date: Tue, 28 Oct 2014 18:19:35 -0300 Subject: [PATCH] Fix typo when calling parseDocBlock method --- PHPUnit/Util/Log/VCR.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PHPUnit/Util/Log/VCR.php b/PHPUnit/Util/Log/VCR.php index 72c075d..9b14495 100644 --- a/PHPUnit/Util/Log/VCR.php +++ b/PHPUnit/Util/Log/VCR.php @@ -119,7 +119,7 @@ public function startTest(PHPUnit_Framework_Test $test) $doc_block = $reflection->getDocComment(); // Use regex to parse the doc_block for a specific annotation - $parsed = $self::parseDocBlock($doc_block, '@vcr'); + $parsed = self::parseDocBlock($doc_block, '@vcr'); $cassetteName = array_pop($parsed); // If the cassette name ends in .json, then use the JSON storage format