Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
recca0120 committed May 4, 2022
1 parent 1f1acfd commit 394c5ff
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions tests/Processors/ExpandEnumsTest.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<?php declare(strict_types=1);
<?php
declare(strict_types=1);

/**
* @license Apache 2.0
Expand All @@ -17,7 +18,7 @@ class ExpandEnumsTest extends OpenApiTestCase
public function setUp(): void
{
parent::setUp();
if (! class_exists('\\ReflectionEnum')) {
if (PHP_VERSION_ID < 80100) {
$this->markTestSkipped();
}
}
Expand Down

0 comments on commit 394c5ff

Please sign in to comment.