50dc79bc8d
* Refactor and add importer to Installer module #443 * Refactor for finances to use in import * Import groups into roles * Formatting * Formatting * Add interface in installer for import * Notes about importing * Check for installer folder * Formatting * Fix pirep->user mapping * Unused import * Formatting
25 lines
539 B
PHP
25 lines
539 B
PHP
<?php
|
|
|
|
namespace App\Contracts;
|
|
|
|
/**
|
|
* @property mixed $id
|
|
* @property bool $skip_mutator
|
|
*
|
|
* @method static Model find(int $airline_id)
|
|
* @method static Model where(array $array)
|
|
* @method static Model updateOrCreate(array $array, array $attrs)
|
|
* @method static truncate()
|
|
*/
|
|
abstract class Model extends \Illuminate\Database\Eloquent\Model
|
|
{
|
|
public const ID_MAX_LENGTH = 12;
|
|
|
|
/**
|
|
* For the factories, skip the mutators. Only apply to one instance
|
|
*
|
|
* @var bool
|
|
*/
|
|
public $skip_mutator = false;
|
|
}
|