1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-10 05:02:36 +01:00
invoiceninja/app/Models/Language.php
2015-03-24 17:34:27 +10:00

10 lines
147 B
PHP

<?php namespace App\Models;
use Eloquent;
class Language extends Eloquent
{
public $timestamps = false;
protected $softDelete = false;
}