phpvms/app/Contracts/Model.php

25 lines
539 B
PHP
Raw Normal View History

<?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
2018-08-27 00:40:04 +08:00
*
* @var bool
*/
public $skip_mutator = false;
}