mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-12 15:35:15 +00:00
Update comment to match methods.
This commit is contained in:
@@ -24,6 +24,8 @@ use LaravelBook\Ardent\Builder;
|
||||
* @method static \Illuminate\Database\Query\Builder|\Account whereName($value)
|
||||
* @method static \Illuminate\Database\Query\Builder|\Account whereActive($value)
|
||||
* @method static \Account accountTypeIn($types)
|
||||
* @property-read \Illuminate\Database\Eloquent\Collection|\AccountMeta[] $accountMeta
|
||||
* @method static \Account withMeta()
|
||||
*/
|
||||
class Account extends Ardent
|
||||
{
|
||||
@@ -42,6 +44,11 @@ class Account extends Ardent
|
||||
|
||||
];
|
||||
|
||||
/**
|
||||
* Fillable fields.
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
protected $fillable = ['name', 'user_id', 'account_type_id', 'active'];
|
||||
|
||||
/**
|
||||
@@ -55,6 +62,7 @@ class Account extends Ardent
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* @param $fieldName
|
||||
*
|
||||
* @return mixed
|
||||
|
@@ -6,6 +6,18 @@ use LaravelBook\Ardent\Ardent as Ardent;
|
||||
* AccountMeta
|
||||
*
|
||||
* @property-read \Account $account
|
||||
* @property integer $id
|
||||
* @property \Carbon\Carbon $created_at
|
||||
* @property \Carbon\Carbon $updated_at
|
||||
* @property integer $account_id
|
||||
* @property string $name
|
||||
* @property string $data
|
||||
* @method static \Illuminate\Database\Query\Builder|\AccountMeta whereId($value)
|
||||
* @method static \Illuminate\Database\Query\Builder|\AccountMeta whereCreatedAt($value)
|
||||
* @method static \Illuminate\Database\Query\Builder|\AccountMeta whereUpdatedAt($value)
|
||||
* @method static \Illuminate\Database\Query\Builder|\AccountMeta whereAccountId($value)
|
||||
* @method static \Illuminate\Database\Query\Builder|\AccountMeta whereName($value)
|
||||
* @method static \Illuminate\Database\Query\Builder|\AccountMeta whereData($value)
|
||||
*/
|
||||
class AccountMeta extends Ardent
|
||||
{
|
||||
|
@@ -65,6 +65,10 @@ use LaravelBook\Ardent\Builder;
|
||||
* @property-read \Illuminate\Database\Eloquent\Collection|\
|
||||
* 'Category[] $categories
|
||||
* @property-read \Illuminate\Database\Eloquent\Collection|\TransactionGroup[] $transactiongroups
|
||||
* @property-read \Illuminate\Database\Eloquent\Collection|\
|
||||
* 'Budget[] $budgets
|
||||
* @property-read \Illuminate\Database\Eloquent\Collection|\
|
||||
* 'Category[] $categories
|
||||
*/
|
||||
class TransactionJournal extends Ardent
|
||||
{
|
||||
|
Reference in New Issue
Block a user