19 lines
249 B
PHP
19 lines
249 B
PHP
|
<?php
|
||
|
namespace fox;
|
||
|
|
||
|
/**
|
||
|
*
|
||
|
* Interface fox\noSqlMigration
|
||
|
*
|
||
|
* @copyright MX STAR LLC 2018-2022
|
||
|
* @version 4.0.0
|
||
|
* @author Pavel Dmitriev
|
||
|
* @license GPLv3
|
||
|
*
|
||
|
**/
|
||
|
|
||
|
interface noSqlMigration
|
||
|
{
|
||
|
// Marker for skip sql migration for class
|
||
|
}
|
||
|
?>
|