We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent deb91d4 commit 3654ef5Copy full SHA for 3654ef5
tests/ReflectionParameterTest.php
@@ -180,6 +180,10 @@ public function testCoverAllMethods()
180
181
public function testGetTypeMethod()
182
{
183
+ if (PHP_VERSION_ID < 70000) {
184
+ $this->markTestSkipped('Test available only for PHP7.0 and newer');
185
+ }
186
+
187
foreach ($this->parsedRefFile->getFileNamespaces() as $fileNamespace) {
188
foreach ($fileNamespace->getFunctions() as $refFunction) {
189
$functionName = $refFunction->getName();
0 commit comments