Skip to content

Commit

Permalink
add update
Browse files Browse the repository at this point in the history
  • Loading branch information
foxtech6 committed May 16, 2019
1 parent b51475f commit 432e695
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions src/Kernel/AbstractUpdate.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
<?php

namespace Foxtech\Kernel;

use PDO;
use Exception;

/**
* Class AbstractUpdate
*
* @author Mykhailo Bavdys <bavdysmyh@ukr.net>
* @since 16.05.2019
*/
abstract class AbstractUpdate extends AbstractModel
{
/**
* Execute migrations
*/
abstract public function run(): void;
}

0 comments on commit 432e695

Please sign in to comment.