Skip to content

Commit

Permalink
fixture name conflict fix
Browse files Browse the repository at this point in the history
  • Loading branch information
samsonasik committed Jan 5, 2025
1 parent b61f4af commit 9497ffc
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ if (true) {

echo 'test';

class A
class FixtureUnreachableA
{
public function run($order, $oldOrder)
{
Expand All @@ -16,7 +16,7 @@ class A

$order || $oldOrder ? true : false;

class B
class FixtureUnreachableB
{
public function run($order, $oldOrder)
{
Expand All @@ -36,7 +36,7 @@ if (true) {

echo 'test';

class A
class FixtureUnreachableA
{
public function run($order, $oldOrder)
{
Expand All @@ -46,7 +46,7 @@ class A

$order || $oldOrder;

class B
class FixtureUnreachableB
{
public function run($order, $oldOrder)
{
Expand Down

0 comments on commit 9497ffc

Please sign in to comment.