forked from firefly-iii/firefly-iii
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
48 changed files
with
344 additions
and
80 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
/* | ||
* BalanceController.php | ||
* Copyright (c) 2023 [email protected] | ||
|
@@ -21,6 +21,9 @@ | |
* along with this program. If not, see <https://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
declare(strict_types=1); | ||
|
||
|
||
namespace FireflyIII\Api\V2\Controllers\Chart; | ||
|
||
use Carbon\Carbon; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
/* | ||
* BudgetController.php | ||
* Copyright (c) 2023 [email protected] | ||
|
@@ -21,6 +21,8 @@ | |
* along with this program. If not, see <https://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
declare(strict_types=1); | ||
|
||
namespace FireflyIII\Api\V2\Controllers\Chart; | ||
|
||
use Carbon\Carbon; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
/* | ||
* BudgetController.php | ||
* CategoryController.php | ||
* Copyright (c) 2023 [email protected] | ||
* | ||
* This file is part of Firefly III (https://github.com/firefly-iii). | ||
|
@@ -21,6 +21,8 @@ | |
* along with this program. If not, see <https://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
declare(strict_types=1); | ||
|
||
namespace FireflyIII\Api\V2\Controllers\Chart; | ||
|
||
use Carbon\Carbon; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
/* | ||
* ShowController.php | ||
* Copyright (c) 2023 [email protected] | ||
|
@@ -21,6 +21,8 @@ | |
* along with this program. If not, see <https://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
declare(strict_types=1); | ||
|
||
namespace FireflyIII\Api\V2\Controllers\Model\Bill; | ||
|
||
use FireflyIII\Api\V2\Controllers\Controller; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
/* | ||
* ShowController.php | ||
* Copyright (c) 2023 [email protected] | ||
|
@@ -21,6 +21,8 @@ | |
* along with this program. If not, see <https://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
declare(strict_types=1); | ||
|
||
namespace FireflyIII\Api\V2\Controllers\Model\PiggyBank; | ||
|
||
use FireflyIII\Api\V2\Controllers\Controller; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
/* | ||
* StoreController.php | ||
* Copyright (c) 2023 [email protected] | ||
|
@@ -21,6 +21,8 @@ | |
* along with this program. If not, see <https://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
declare(strict_types=1); | ||
|
||
namespace FireflyIII\Api\V2\Controllers\Model\Transaction; | ||
|
||
use FireflyIII\Api\V2\Controllers\Controller; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,6 @@ | ||
<?php | ||
|
||
|
||
/* | ||
* DestroyController.php | ||
* Copyright (c) 2023 [email protected] | ||
|
@@ -19,6 +21,8 @@ | |
* along with this program. If not, see <https://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
declare(strict_types=1); | ||
|
||
namespace FireflyIII\Api\V2\Controllers\UserGroup; | ||
|
||
use FireflyIII\Api\V2\Controllers\Controller; | ||
|
@@ -28,5 +32,4 @@ | |
*/ | ||
class DestroyController extends Controller | ||
{ | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,6 @@ | ||
<?php | ||
|
||
|
||
/* | ||
* ShowController.php | ||
* Copyright (c) 2023 [email protected] | ||
|
@@ -19,6 +21,8 @@ | |
* along with this program. If not, see <https://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
declare(strict_types=1); | ||
|
||
namespace FireflyIII\Api\V2\Controllers\UserGroup; | ||
|
||
use FireflyIII\Api\V2\Controllers\Controller; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,6 @@ | ||
<?php | ||
|
||
|
||
/* | ||
* StoreController.php | ||
* Copyright (c) 2023 [email protected] | ||
|
@@ -19,6 +21,8 @@ | |
* along with this program. If not, see <https://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
declare(strict_types=1); | ||
|
||
namespace FireflyIII\Api\V2\Controllers\UserGroup; | ||
|
||
use FireflyIII\Api\V2\Controllers\Controller; | ||
|
@@ -50,6 +54,8 @@ function ($request, $next) { | |
} | ||
|
||
/** | ||
* @param StoreRequest $request | ||
* | ||
* @return JsonResponse | ||
*/ | ||
public function store(StoreRequest $request): JsonResponse | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,6 @@ | ||
<?php | ||
|
||
|
||
/* | ||
* UpdateController.php | ||
* Copyright (c) 2023 [email protected] | ||
|
@@ -19,13 +21,17 @@ | |
* along with this program. If not, see <https://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
declare(strict_types=1); | ||
|
||
namespace FireflyIII\Api\V2\Controllers\UserGroup; | ||
|
||
use FireflyIII\Api\V2\Controllers\Controller; | ||
|
||
/** | ||
* Class UpdateController | ||
*/ | ||
class UpdateController extends Controller | ||
{ | ||
|
||
// basic edit van group | ||
// add user, add rights, remove user, remove rights. | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
/* | ||
* BalanceChartRequest.php | ||
* Copyright (c) 2023 [email protected] | ||
|
@@ -21,13 +21,18 @@ | |
* along with this program. If not, see <https://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
declare(strict_types=1); | ||
|
||
namespace FireflyIII\Api\V2\Request\Chart; | ||
|
||
use FireflyIII\Support\Request\ChecksLogin; | ||
use FireflyIII\Support\Request\ConvertsDataTypes; | ||
use Illuminate\Foundation\Http\FormRequest; | ||
use Illuminate\Validation\Validator; | ||
|
||
/** | ||
* Class BalanceChartRequest | ||
*/ | ||
class BalanceChartRequest extends FormRequest | ||
{ | ||
use ConvertsDataTypes; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,6 @@ | ||
<?php | ||
|
||
|
||
/* | ||
* StoreRequest.php | ||
* Copyright (c) 2023 [email protected] | ||
|
@@ -19,12 +21,17 @@ | |
* along with this program. If not, see <https://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
declare(strict_types=1); | ||
|
||
namespace FireflyIII\Api\V2\Request\UserGroup; | ||
|
||
use FireflyIII\Support\Request\ChecksLogin; | ||
use FireflyIII\Support\Request\ConvertsDataTypes; | ||
use Illuminate\Foundation\Http\FormRequest; | ||
|
||
/** | ||
* Class StoreRequest | ||
*/ | ||
class StoreRequest extends FormRequest | ||
{ | ||
use ChecksLogin; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
/* | ||
* OutputVersion.php | ||
* Copyright (c) 2023 [email protected] | ||
|
@@ -21,25 +21,29 @@ | |
* along with this program. If not, see <https://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
declare(strict_types=1); | ||
|
||
namespace FireflyIII\Console\Commands\System; | ||
|
||
use Illuminate\Console\Command; | ||
|
||
/** | ||
* Class OutputVersion | ||
*/ | ||
class OutputVersion extends Command | ||
{ | ||
/** | ||
* The name and signature of the console command. | ||
* The console command description. | ||
* | ||
* @var string | ||
*/ | ||
protected $signature = 'firefly-iii:output-version'; | ||
|
||
protected $description = 'Outputs the Firefly III version'; | ||
/** | ||
* The console command description. | ||
* The name and signature of the console command. | ||
* | ||
* @var string | ||
*/ | ||
protected $description = 'Outputs the Firefly III version'; | ||
protected $signature = 'firefly-iii:output-version'; | ||
|
||
/** | ||
* Execute the console command. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
/* | ||
* RuleActionFailedOnArray.php | ||
* Copyright (c) 2023 [email protected] | ||
|
@@ -21,6 +21,8 @@ | |
* along with this program. If not, see <https://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
declare(strict_types=1); | ||
|
||
namespace FireflyIII\Events\Model\Rule; | ||
|
||
use FireflyIII\Models\RuleAction; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
/* | ||
* RuleActionFailedOnArray.php | ||
* RuleActionFailedOnObject.php | ||
* Copyright (c) 2023 [email protected] | ||
* | ||
* This file is part of Firefly III (https://github.com/firefly-iii). | ||
|
@@ -21,6 +21,8 @@ | |
* along with this program. If not, see <https://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
declare(strict_types=1); | ||
|
||
namespace FireflyIII\Events\Model\Rule; | ||
|
||
use FireflyIII\Models\RuleAction; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,6 @@ | ||
<?php | ||
|
||
|
||
/* | ||
* UserGroupFactory.php | ||
* Copyright (c) 2023 [email protected] | ||
|
@@ -19,6 +21,8 @@ | |
* along with this program. If not, see <https://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
declare(strict_types=1); | ||
|
||
namespace FireflyIII\Factory; | ||
|
||
use FireflyIII\Enums\UserRoleEnum; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
/* | ||
* RuleHandler.php | ||
* Copyright (c) 2023 [email protected] | ||
|
@@ -21,6 +21,8 @@ | |
* along with this program. If not, see <https://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
declare(strict_types=1); | ||
|
||
namespace FireflyIII\Handlers\Events\Model; | ||
|
||
use FireflyIII\Events\Model\Rule\RuleActionFailedOnArray; | ||
|
Oops, something went wrong.