1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 08:21:34 +02:00
invoiceninja/app/Models/Language.php
2015-09-25 12:57:40 +03:00

14 lines
184 B
PHP

<?php namespace App\Models;
use Eloquent;
class Language extends Eloquent
{
public $timestamps = false;
public function getName()
{
return $this->name;
}
}