Add strict_types

This commit is contained in:
James Cole 2023-01-02 06:52:18 +01:00
parent 0429f50e5c
commit 1266eff7f6
No known key found for this signature in database
GPG Key ID: B49A324B7EAD6D80
3 changed files with 14 additions and 4 deletions

View File

@ -1,8 +1,8 @@
<?php <?php
declare(strict_types=1);
/* /*
* ChangedPiggyBankAmount.php * ChangedPiggyBankAmount.php
* Copyright (c) 2022 james@firefly-iii.org * Copyright (c) 2023 james@firefly-iii.org
* *
* This file is part of Firefly III (https://github.com/firefly-iii). * This file is part of Firefly III (https://github.com/firefly-iii).
* *
@ -20,6 +20,8 @@ declare(strict_types=1);
* along with this program. If not, see <https://www.gnu.org/licenses/>. * along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
declare(strict_types=1);
namespace FireflyIII\Events; namespace FireflyIII\Events;
use FireflyIII\Models\PiggyBank; use FireflyIII\Models\PiggyBank;

View File

@ -1,8 +1,8 @@
<?php <?php
declare(strict_types=1);
/* /*
* PiggyBankEventHandler.php * PiggyBankEventHandler.php
* Copyright (c) 2022 james@firefly-iii.org * Copyright (c) 2023 james@firefly-iii.org
* *
* This file is part of Firefly III (https://github.com/firefly-iii). * This file is part of Firefly III (https://github.com/firefly-iii).
* *
@ -20,6 +20,8 @@ declare(strict_types=1);
* along with this program. If not, see <https://www.gnu.org/licenses/>. * along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
declare(strict_types=1);
namespace FireflyIII\Handlers\Events; namespace FireflyIII\Handlers\Events;
use Carbon\Carbon; use Carbon\Carbon;

View File

@ -2,6 +2,12 @@
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/). This project adheres to [Semantic Versioning](http://semver.org/).
## 5.7.18 - 2023-01-03
### Fixed
- #6775 OAuth authentication was broken for Authelia and other remote user providers.
- #6787 SQLite value conversion broke several functions
## 5.7.17 - 2022-12-30 ## 5.7.17 - 2022-12-30
### Fixed ### Fixed