Skip to content

Commit

Permalink
Update more snapshots
Browse files Browse the repository at this point in the history
  • Loading branch information
markstory committed Nov 1, 2024
1 parent ab83075 commit 0fb6aba
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 14 deletions.
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<?php
declare(strict_types=1);

use Migrations\AbstractMigration;
use Migrations\BaseMigration;

class TestSnapshotAutoIdDisabled extends AbstractMigration
class TestSnapshotAutoIdDisabled extends BaseMigration
{
public bool $autoId = false;

Expand Down
4 changes: 2 additions & 2 deletions tests/comparisons/Migration/test_snapshot_not_empty.php
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<?php
declare(strict_types=1);

use Migrations\AbstractMigration;
use Migrations\BaseMigration;

class TestSnapshotNotEmpty extends AbstractMigration
class TestSnapshotNotEmpty extends BaseMigration
{
/**
* Up Method.
Expand Down
4 changes: 2 additions & 2 deletions tests/comparisons/Migration/test_snapshot_plugin_blog.php
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<?php
declare(strict_types=1);

use Migrations\AbstractMigration;
use Migrations\BaseMigration;

class TestSnapshotPluginBlog extends AbstractMigration
class TestSnapshotPluginBlog extends BaseMigration
{
/**
* Up Method.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<?php
declare(strict_types=1);

use Migrations\AbstractMigration;
use Migrations\BaseMigration;

class TestSnapshotWithAutoIdCompatibleSignedPrimaryKeys extends AbstractMigration
class TestSnapshotWithAutoIdCompatibleSignedPrimaryKeys extends BaseMigration
{
/**
* Up Method.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<?php
declare(strict_types=1);

use Migrations\AbstractMigration;
use Migrations\BaseMigration;

class TestSnapshotWithAutoIdIncompatibleSignedPrimaryKeys extends AbstractMigration
class TestSnapshotWithAutoIdIncompatibleSignedPrimaryKeys extends BaseMigration
{
public bool $autoId = false;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<?php
declare(strict_types=1);

use Migrations\AbstractMigration;
use Migrations\BaseMigration;

class TestSnapshotWithAutoIdIncompatibleUnsignedPrimaryKeys extends AbstractMigration
class TestSnapshotWithAutoIdIncompatibleUnsignedPrimaryKeys extends BaseMigration
{
public bool $autoId = false;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<?php
declare(strict_types=1);

use Migrations\AbstractMigration;
use Migrations\BaseMigration;

class TestSnapshotWithNonDefaultCollation extends AbstractMigration
class TestSnapshotWithNonDefaultCollation extends BaseMigration
{
/**
* Up Method.
Expand Down

0 comments on commit 0fb6aba

Please sign in to comment.