From 074e6d52b123b45b68176b73490e7dd958ecdf90 Mon Sep 17 00:00:00 2001 From: James Cole Date: Sun, 31 Aug 2014 07:32:48 +0200 Subject: [PATCH] Regenerated all model phpdocs. --- app/models/Account.php | 20 ++++---- app/models/AccountType.php | 1 - app/models/Budget.php | 18 +++---- app/models/Category.php | 18 +++---- app/models/Component.php | 18 +++---- app/models/Limit.php | 20 ++++---- app/models/LimitRepetition.php | 8 +-- app/models/Piggybank.php | 38 +++++++------- app/models/PiggybankEvent.php | 12 ++--- app/models/PiggybankReminder.php | 2 +- app/models/PiggybankRepetition.php | 15 +++--- app/models/Preference.php | 11 ++-- app/models/RecurringTransaction.php | 24 ++++----- app/models/RecurringTransactionReminder.php | 2 +- app/models/Reminder.php | 4 +- app/models/TransactionCurrency.php | 8 +-- app/models/TransactionJournal.php | 57 +++++++-------------- app/models/TransactionType.php | 8 +-- app/models/User.php | 32 ++++++------ 19 files changed, 145 insertions(+), 171 deletions(-) diff --git a/app/models/Account.php b/app/models/Account.php index 45fc7fd840..0c056a702b 100644 --- a/app/models/Account.php +++ b/app/models/Account.php @@ -5,17 +5,17 @@ use LaravelBook\Ardent\Builder; /** * Account * - * @property integer $id - * @property \Carbon\Carbon $created_at - * @property \Carbon\Carbon $updated_at - * @property integer $user_id - * @property integer $account_type_id - * @property string $name - * @property boolean $active - * @property-read \AccountType $accountType + * @property integer $id + * @property \Carbon\Carbon $created_at + * @property \Carbon\Carbon $updated_at + * @property integer $user_id + * @property integer $account_type_id + * @property string $name + * @property boolean $active + * @property-read \AccountType $accountType * @property-read \Illuminate\Database\Eloquent\Collection|\Transaction[] $transactions - * @property-read \Illuminate\Database\Eloquent\Collection|\Piggybank[] $piggybanks - * @property-read \User $user + * @property-read \Illuminate\Database\Eloquent\Collection|\Piggybank[] $piggybanks + * @property-read \User $user * @method static \Illuminate\Database\Query\Builder|\Account whereId($value) * @method static \Illuminate\Database\Query\Builder|\Account whereCreatedAt($value) * @method static \Illuminate\Database\Query\Builder|\Account whereUpdatedAt($value) diff --git a/app/models/AccountType.php b/app/models/AccountType.php index 6053be1047..bdffe1b2fc 100644 --- a/app/models/AccountType.php +++ b/app/models/AccountType.php @@ -1,6 +1,5 @@