firefly-iii/app/Models/AccountType.php

38 lines
887 B
PHP
Raw Normal View History

2015-02-27 09:48:33 -06:00
<?php namespace FireflyIII\Models;
2016-01-01 14:49:27 -06:00
use Carbon\Carbon;
use Illuminate\Database\Eloquent\Collection;
2015-02-27 09:48:33 -06:00
use Illuminate\Database\Eloquent\Model;
/**
2016-01-01 14:49:27 -06:00
* FireflyIII\Models\AccountType
2015-02-27 09:48:33 -06:00
*
2016-01-01 14:49:27 -06:00
* @property integer $id
* @property Carbon $created_at
* @property Carbon $updated_at
* @property string $type
* @property boolean $editable
* @property-read Collection|Account[] $accounts
2015-02-27 09:48:33 -06:00
*/
class AccountType extends Model
{
//
/**
* @return \Illuminate\Database\Eloquent\Relations\HasMany
*/
public function accounts()
{
return $this->hasMany('FireflyIII\Models\Account');
}
/**
* @return array
*/
2015-12-29 01:27:05 -06:00
/** @noinspection PhpMissingParentCallCommonInspection */
2015-02-27 09:48:33 -06:00
public function getDates()
{
return ['created_at', 'updated_at'];
}
}