We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
++
+= 1
1 parent 60b67e1 commit bd42ab4Copy full SHA for bd42ab4
tests/Doctrine/Tests/Common/Annotations/AnnotationRegistryTest.php
@@ -73,7 +73,7 @@ public function testStopCallingLoadersIfClassIsNotFound() : void
73
AnnotationRegistry::reset();
74
$i = 0;
75
$autoLoader = function () use (&$i) : bool {
76
- $i++;
+ $i += 1;
77
return false;
78
};
79
AnnotationRegistry::registerLoader($autoLoader);
@@ -93,7 +93,7 @@ public function testStopCallingLoadersAfterClassIsFound() : void
93
94
$autoLoader = function () use (&$i, $className) : bool {
95
eval('class ' . $className . ' {}');
96
97
return true;
98
99
0 commit comments