@@ -169,7 +169,7 @@ public function testDescriptionsCanEscapeAtSignsAndClosingBraces(): void
169169
170170 public function testMultilineTags (): void
171171 {
172- $ docCommment = <<<DOC
172+ $ docComment = <<<DOC
173173/**
174174 * This is an example of a summary.
175175 *
@@ -180,7 +180,7 @@ public function testMultilineTags(): void
180180 */
181181DOC ;
182182 $ factory = DocBlockFactory::createInstance ();
183- $ docblock = $ factory ->create ($ docCommment );
183+ $ docblock = $ factory ->create ($ docComment );
184184
185185 self ::assertEquals (
186186 [
@@ -201,15 +201,15 @@ public function testMultilineTags(): void
201201
202202 public function testMethodRegression (): void
203203 {
204- $ docCommment = <<<DOC
204+ $ docComment = <<<DOC
205205/**
206206 * This is an example of a summary.
207207 *
208208 * @method void setInteger(integer \$integer)
209209 */
210210DOC ;
211211 $ factory = DocBlockFactory::createInstance ();
212- $ docblock = $ factory ->create ($ docCommment );
212+ $ docblock = $ factory ->create ($ docComment );
213213
214214 self ::assertEquals (
215215 [
@@ -231,15 +231,15 @@ public function testMethodRegression(): void
231231
232232 public function testInvalidTypeParamResultsInInvalidTag (): void
233233 {
234- $ docCommment = '
234+ $ docComment = '
235235/**
236236 * This is an example of a summary.
237237 *
238238 * @param array\Foo> $test
239239 */
240240 ' ;
241241 $ factory = DocBlockFactory::createInstance ();
242- $ docblock = $ factory ->create ($ docCommment );
242+ $ docblock = $ factory ->create ($ docComment );
243243
244244 self ::assertEquals (
245245 [
@@ -257,14 +257,14 @@ public function testInvalidTypeParamResultsInInvalidTag(): void
257257
258258 public function testConstantReferenceTypes (): void
259259 {
260- $ docCommment = <<<DOC
260+ $ docComment = <<<DOC
261261 /**
262262 * @return self::STATUS_*
263263 */
264264DOC ;
265265
266266 $ factory = DocBlockFactory::createInstance ();
267- $ docblock = $ factory ->create ($ docCommment );
267+ $ docblock = $ factory ->create ($ docComment );
268268
269269 self ::assertEquals (
270270 [
@@ -276,7 +276,7 @@ public function testConstantReferenceTypes(): void
276276
277277 public function testRegressionWordpressDocblocks (): void
278278 {
279- $ docCommment = <<<DOC
279+ $ docComment = <<<DOC
280280 /**
281281 * Install a package.
282282 *
@@ -311,7 +311,7 @@ public function testRegressionWordpressDocblocks(): void
311311DOC ;
312312
313313 $ factory = DocBlockFactory::createInstance ();
314- $ docblock = $ factory ->create ($ docCommment );
314+ $ docblock = $ factory ->create ($ docComment );
315315
316316 self ::assertEquals (
317317 new DocBlock (
0 commit comments