Dependencies

This commit is contained in:
2021-03-25 21:25:17 -03:00
parent e515612412
commit cd1ee7d446
157 changed files with 8216 additions and 0 deletions

View File

@ -0,0 +1,16 @@
<?php
namespace Incoviba\common;
use Incoviba\Common\Alias\OldModel as Model;
/**
* @property int $id
* @property Registry $registry
* @property string $column
* @property mixed $old
* @property mixed $new
*/
class RegistryData extends Model
{
public static $_table = 'registry_data';
}