Skip to content

Commit

Permalink
Support Laravel 11
Browse files Browse the repository at this point in the history
  • Loading branch information
staudenmeir committed Mar 9, 2024
1 parent 4d9ab50 commit d68df38
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 20 deletions.
10 changes: 0 additions & 10 deletions tests/Graph/AncestorsTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -171,11 +171,6 @@ public function testEagerLoadingWithCycleDetection(string $class, array $exclusi
$this->markTestSkipped();
}

// TODO[L11]
if ($this->connection === 'firebird' && version_compare(phpversion(), '8.2', '<')) {
$this->markTestSkipped();
}

$this->seedCycle();

$nodes = $class::with([
Expand All @@ -193,11 +188,6 @@ public function testEagerLoadingWithCycleDetectionAndStart(string $class, array
$this->markTestSkipped();
}

// TODO[L11]
if ($this->connection === 'firebird' && version_compare(phpversion(), '8.2', '<')) {
$this->markTestSkipped();
}

$this->seedCycle();

$nodes = $class::with([
Expand Down
10 changes: 0 additions & 10 deletions tests/Graph/DescendantsTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -179,11 +179,6 @@ public function testEagerLoadingWithCycleDetection(string $class, array $exclusi
$this->markTestSkipped();
}

// TODO[L11]
if ($this->connection === 'firebird' && version_compare(phpversion(), '8.2', '<')) {
$this->markTestSkipped();
}

$this->seedCycle();

$nodes = $class::with([
Expand All @@ -201,11 +196,6 @@ public function testEagerLoadingWithCycleDetectionAndStart(string $class, array
$this->markTestSkipped();
}

// TODO[L11]
if ($this->connection === 'firebird' && version_compare(phpversion(), '8.2', '<')) {
$this->markTestSkipped();
}

$this->seedCycle();

$nodes = $class::with([
Expand Down

0 comments on commit d68df38

Please sign in to comment.