Skip to content

Commit

Permalink
Skip Doctrine DBAL on php 8 until we have a compatible version.
Browse files Browse the repository at this point in the history
  • Loading branch information
derrabus committed May 23, 2020
1 parent b4ca686 commit 5c82cbb
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions Tests/Functional/SetAclCommandTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,13 @@ class SetAclCommandTest extends AbstractWebTestCase
const OBJECT_CLASS = 'Symfony\Bundle\SecurityBundle\Tests\Functional\Bundle\AclBundle\Entity\Car';
const SECURITY_CLASS = 'Symfony\Component\Security\Core\User\User';

public static function setUpBeforeClass()
{
if (\PHP_VERSION_ID >= 80000) {
self::markTestSkipped('Doctrine DBAL 2.x is incompatible with PHP 8.');
}
}

public function testSetAclUser()
{
$objectId = 1;
Expand Down

0 comments on commit 5c82cbb

Please sign in to comment.