Skip to content
Snippets Groups Projects
Anomaly.php 305 B
Newer Older
<?php

namespace Breyta\Test\Example\Grouped;

use Breyta\AbstractMigration;

class Anomaly extends AbstractMigration
{
    /**
     * Bring the migration up
     */
    public function up(): void
    {
    }

    /**
     * Bring the migration down
     */
    public function down(): void
    {
    }
}