mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-02-25 18:45:27 -06:00
Cleanup.
This commit is contained in:
parent
f0f965421c
commit
5df0634380
@ -5,7 +5,6 @@ use LaravelBook\Ardent\Builder;
|
|||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
|
||||||
* Account
|
* Account
|
||||||
*
|
*
|
||||||
* @property integer $id
|
* @property integer $id
|
||||||
|
@ -28,6 +28,10 @@ use LaravelBook\Ardent\Ardent;
|
|||||||
* @method static \Illuminate\Database\Query\Builder|\Reminder whereRemembersableId($value)
|
* @method static \Illuminate\Database\Query\Builder|\Reminder whereRemembersableId($value)
|
||||||
* @method static \Illuminate\Database\Query\Builder|\Reminder whereRemembersableType($value)
|
* @method static \Illuminate\Database\Query\Builder|\Reminder whereRemembersableType($value)
|
||||||
* @method static \Reminder dateIs($start, $end)
|
* @method static \Reminder dateIs($start, $end)
|
||||||
|
* @property integer $remindersable_id
|
||||||
|
* @property string $remindersable_type
|
||||||
|
* @method static \Illuminate\Database\Query\Builder|\Reminder whereRemindersableId($value)
|
||||||
|
* @method static \Illuminate\Database\Query\Builder|\Reminder whereRemindersableType($value)
|
||||||
*/
|
*/
|
||||||
class Reminder extends Eloquent
|
class Reminder extends Eloquent
|
||||||
{
|
{
|
||||||
|
@ -14,6 +14,7 @@ use Illuminate\Database\Eloquent\Model as Eloquent;
|
|||||||
* @method static \Illuminate\Database\Query\Builder|\TransactionCurrency whereCreatedAt($value)
|
* @method static \Illuminate\Database\Query\Builder|\TransactionCurrency whereCreatedAt($value)
|
||||||
* @method static \Illuminate\Database\Query\Builder|\TransactionCurrency whereUpdatedAt($value)
|
* @method static \Illuminate\Database\Query\Builder|\TransactionCurrency whereUpdatedAt($value)
|
||||||
* @method static \Illuminate\Database\Query\Builder|\TransactionCurrency whereCode($value)
|
* @method static \Illuminate\Database\Query\Builder|\TransactionCurrency whereCode($value)
|
||||||
|
* @property-read \Illuminate\Database\Eloquent\Collection|\TransactionJournal[] $transactionJournals
|
||||||
*/
|
*/
|
||||||
class TransactionCurrency extends Eloquent
|
class TransactionCurrency extends Eloquent
|
||||||
{
|
{
|
||||||
|
@ -52,6 +52,10 @@ use LaravelBook\Ardent\Builder;
|
|||||||
* 'Budget[] $budgets
|
* 'Budget[] $budgets
|
||||||
* @property-read \Illuminate\Database\Eloquent\Collection|\
|
* @property-read \Illuminate\Database\Eloquent\Collection|\
|
||||||
* 'Category[] $categories
|
* 'Category[] $categories
|
||||||
|
* @property-read \Illuminate\Database\Eloquent\Collection|\
|
||||||
|
* 'Budget[] $budgets
|
||||||
|
* @property-read \Illuminate\Database\Eloquent\Collection|\
|
||||||
|
* 'Category[] $categories
|
||||||
*/
|
*/
|
||||||
class TransactionJournal extends Ardent
|
class TransactionJournal extends Ardent
|
||||||
{
|
{
|
||||||
|
@ -32,6 +32,7 @@ use LaravelBook\Ardent\Ardent;
|
|||||||
* @method static \Illuminate\Database\Query\Builder|\User whereReset($value)
|
* @method static \Illuminate\Database\Query\Builder|\User whereReset($value)
|
||||||
* @method static \Illuminate\Database\Query\Builder|\User whereRememberToken($value)
|
* @method static \Illuminate\Database\Query\Builder|\User whereRememberToken($value)
|
||||||
* @method static \Illuminate\Database\Query\Builder|\User whereMigrated($value)
|
* @method static \Illuminate\Database\Query\Builder|\User whereMigrated($value)
|
||||||
|
* @property-read \Illuminate\Database\Eloquent\Collection|\Reminder[] $reminders
|
||||||
*/
|
*/
|
||||||
class User extends Ardent implements UserInterface, RemindableInterface
|
class User extends Ardent implements UserInterface, RemindableInterface
|
||||||
{
|
{
|
||||||
|
@ -1,7 +0,0 @@
|
|||||||
REM composer self-update
|
|
||||||
composer update
|
|
||||||
php artisan clear-compiled --env=local
|
|
||||||
php artisan ide-helper:generate --env=local
|
|
||||||
php artisan ide-helper:models --env=local --write
|
|
||||||
php artisan optimize --env=local
|
|
||||||
php artisan dump-autoload --env=local
|
|
@ -1,30 +0,0 @@
|
|||||||
#!/bin/bash
|
|
||||||
cd ..
|
|
||||||
composer self-update
|
|
||||||
composer update
|
|
||||||
rm -f ./app/storage/firefly-iii-import-*.json
|
|
||||||
rm -f ./app/storage/debugbar/*.json
|
|
||||||
rm -f ./app/storage/logs/larave*.log
|
|
||||||
rm -f ./app/storage/meta/services.json
|
|
||||||
|
|
||||||
for i in `seq 0 9`;
|
|
||||||
do
|
|
||||||
rm -f ./app/storage/views/$i*
|
|
||||||
done
|
|
||||||
|
|
||||||
rm -f ./app/storage/views/a*
|
|
||||||
rm -f ./app/storage/views/b*
|
|
||||||
rm -f ./app/storage/views/c*
|
|
||||||
rm -f ./app/storage/views/d*
|
|
||||||
rm -f ./app/storage/views/e*
|
|
||||||
rm -f ./app/storage/views/f*
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
php artisan clear-compiled --env=local
|
|
||||||
php artisan ide-helper:generate --env=local
|
|
||||||
php artisan ide-helper:models --env=local --write
|
|
||||||
php artisan optimize --env=local
|
|
||||||
php artisan dump-autoload --env=local
|
|
||||||
cd scripts
|
|
||||||
./local-reset.sh
|
|
@ -1,2 +0,0 @@
|
|||||||
#!/bin/bash
|
|
||||||
php ../artisan migrate:refresh --seed --env=local
|
|
@ -1,27 +0,0 @@
|
|||||||
#!/bin/bash
|
|
||||||
composer self-update
|
|
||||||
composer update
|
|
||||||
rm -f ../app/storage/firefly-iii-import-*.json
|
|
||||||
rm -f ../app/storage/debugbar/*.json
|
|
||||||
rm -f ../app/storage/logs/laravel.log
|
|
||||||
rm -f ../app/storage/meta/services.json
|
|
||||||
|
|
||||||
for i in `seq 0 9`;
|
|
||||||
do
|
|
||||||
rm -f ../app/storage/views/$i*
|
|
||||||
done
|
|
||||||
|
|
||||||
rm -f ../app/storage/views/a*
|
|
||||||
rm -f ../app/storage/views/b*
|
|
||||||
rm -f ../app/storage/views/c*
|
|
||||||
rm -f ../app/storage/views/d*
|
|
||||||
rm -f ../app/storage/views/e*
|
|
||||||
rm -f ../app/storage/views/f*
|
|
||||||
|
|
||||||
|
|
||||||
php ../artisan clear-compiled --env=vagrant
|
|
||||||
php ../artisan ide-helper:generate --env=vagrant
|
|
||||||
php ../artisan ide-helper:models --env=vagrant --write
|
|
||||||
php ../artisan optimize --env=vagrant
|
|
||||||
php ../artisan dump-autoload --env=vagrant
|
|
||||||
./vagrant-reset.sh
|
|
@ -1,2 +0,0 @@
|
|||||||
#!/bin/bash
|
|
||||||
php ../artisan migrate --seed --env=vagrant
|
|
@ -1,2 +0,0 @@
|
|||||||
#!/bin/bash
|
|
||||||
php ../artisan migrate:refresh --seed --env=vagrant
|
|
Loading…
Reference in New Issue
Block a user