diff --git a/app/Services/Bunq/Id/BunqId.php b/app/Services/Bunq/Id/BunqId.php index 1b657519f0..76885d1633 100644 --- a/app/Services/Bunq/Id/BunqId.php +++ b/app/Services/Bunq/Id/BunqId.php @@ -23,8 +23,8 @@ declare(strict_types=1); namespace FireflyIII\Services\Bunq\Id; -use Log; /** + * @codeCoverageIgnore * Class BunqId. */ class BunqId @@ -55,7 +55,7 @@ class BunqId /** * @param int $id */ - public function setId(int $id) + public function setId(int $id): void { $this->id = $id; } diff --git a/app/Services/Bunq/Id/DeviceServerId.php b/app/Services/Bunq/Id/DeviceServerId.php index e5758ae8d2..dbc443f235 100644 --- a/app/Services/Bunq/Id/DeviceServerId.php +++ b/app/Services/Bunq/Id/DeviceServerId.php @@ -24,6 +24,7 @@ declare(strict_types=1); namespace FireflyIII\Services\Bunq\Id; /** + * @codeCoverageIgnore * Class DeviceServerId. */ class DeviceServerId extends BunqId diff --git a/app/Services/Bunq/Id/DeviceSessionId.php b/app/Services/Bunq/Id/DeviceSessionId.php index 91c5233870..551d0feebf 100644 --- a/app/Services/Bunq/Id/DeviceSessionId.php +++ b/app/Services/Bunq/Id/DeviceSessionId.php @@ -23,6 +23,7 @@ declare(strict_types=1); namespace FireflyIII\Services\Bunq\Id; /** + * @codeCoverageIgnore * Class DeviceSessionId. */ class DeviceSessionId extends BunqId diff --git a/app/Services/Bunq/Id/InstallationId.php b/app/Services/Bunq/Id/InstallationId.php index ec3053165c..14423dbf64 100644 --- a/app/Services/Bunq/Id/InstallationId.php +++ b/app/Services/Bunq/Id/InstallationId.php @@ -23,6 +23,7 @@ declare(strict_types=1); namespace FireflyIII\Services\Bunq\Id; /** + * @codeCoverageIgnore * Class InstallationId. */ class InstallationId extends BunqId diff --git a/app/Services/Bunq/Object/Alias.php b/app/Services/Bunq/Object/Alias.php index 0c29f74136..3e74db5af4 100644 --- a/app/Services/Bunq/Object/Alias.php +++ b/app/Services/Bunq/Object/Alias.php @@ -23,6 +23,7 @@ declare(strict_types=1); namespace FireflyIII\Services\Bunq\Object; /** + * @codeCoverageIgnore * Class Alias. */ class Alias extends BunqObject diff --git a/app/Services/Bunq/Object/Amount.php b/app/Services/Bunq/Object/Amount.php index ec93a1d88b..92dc420e35 100644 --- a/app/Services/Bunq/Object/Amount.php +++ b/app/Services/Bunq/Object/Amount.php @@ -23,6 +23,7 @@ declare(strict_types=1); namespace FireflyIII\Services\Bunq\Object; /** + * @codeCoverageIgnore * Class Amount. */ class Amount extends BunqObject diff --git a/app/Services/Bunq/Object/Avatar.php b/app/Services/Bunq/Object/Avatar.php index 91c7847527..051ad38e81 100644 --- a/app/Services/Bunq/Object/Avatar.php +++ b/app/Services/Bunq/Object/Avatar.php @@ -23,6 +23,7 @@ declare(strict_types=1); namespace FireflyIII\Services\Bunq\Object; /** + * @codeCoverageIgnore * Class Avatar. */ class Avatar extends BunqObject diff --git a/app/Services/Bunq/Object/BunqObject.php b/app/Services/Bunq/Object/BunqObject.php index 41b1d4a855..2a275f7e57 100644 --- a/app/Services/Bunq/Object/BunqObject.php +++ b/app/Services/Bunq/Object/BunqObject.php @@ -23,6 +23,7 @@ declare(strict_types=1); namespace FireflyIII\Services\Bunq\Object; /** + * @codeCoverageIgnore * Class BunqObject. */ abstract class BunqObject diff --git a/app/Services/Bunq/Object/DeviceServer.php b/app/Services/Bunq/Object/DeviceServer.php index 2fd34992ee..d865dc894a 100644 --- a/app/Services/Bunq/Object/DeviceServer.php +++ b/app/Services/Bunq/Object/DeviceServer.php @@ -28,6 +28,7 @@ use FireflyIII\Services\Bunq\Id\DeviceServerId; use FireflyIII\Exceptions\FireflyException; /** + * @codeCoverageIgnore * Class DeviceServer */ class DeviceServer extends BunqObject diff --git a/app/Services/Bunq/Object/Image.php b/app/Services/Bunq/Object/Image.php index bfc36cdff4..96eb125460 100644 --- a/app/Services/Bunq/Object/Image.php +++ b/app/Services/Bunq/Object/Image.php @@ -24,6 +24,7 @@ declare(strict_types=1); namespace FireflyIII\Services\Bunq\Object; /** + * @codeCoverageIgnore * Class Image */ class Image extends BunqObject diff --git a/app/Services/Bunq/Object/LabelMonetaryAccount.php b/app/Services/Bunq/Object/LabelMonetaryAccount.php index f9d89a456d..253afea1b3 100644 --- a/app/Services/Bunq/Object/LabelMonetaryAccount.php +++ b/app/Services/Bunq/Object/LabelMonetaryAccount.php @@ -26,6 +26,7 @@ namespace FireflyIII\Services\Bunq\Object; use FireflyIII\Exceptions\FireflyException; /** + * @codeCoverageIgnore * Class LabelMonetaryAccount */ class LabelMonetaryAccount extends BunqObject diff --git a/app/Services/Bunq/Object/LabelUser.php b/app/Services/Bunq/Object/LabelUser.php index d0a465a984..00b3456e53 100644 --- a/app/Services/Bunq/Object/LabelUser.php +++ b/app/Services/Bunq/Object/LabelUser.php @@ -25,6 +25,7 @@ namespace FireflyIII\Services\Bunq\Object; use FireflyIII\Exceptions\FireflyException; /** + * @codeCoverageIgnore * Class LabelUser */ class LabelUser extends BunqObject diff --git a/app/Services/Bunq/Object/MonetaryAccountBank.php b/app/Services/Bunq/Object/MonetaryAccountBank.php index 6360cb289f..956398e245 100644 --- a/app/Services/Bunq/Object/MonetaryAccountBank.php +++ b/app/Services/Bunq/Object/MonetaryAccountBank.php @@ -25,6 +25,7 @@ namespace FireflyIII\Services\Bunq\Object; use Carbon\Carbon; /** + * @codeCoverageIgnore * Class MonetaryAccountBank. */ class MonetaryAccountBank extends BunqObject diff --git a/app/Services/Bunq/Object/MonetaryAccountProfile.php b/app/Services/Bunq/Object/MonetaryAccountProfile.php index d81672ddd5..aaac77ddc7 100644 --- a/app/Services/Bunq/Object/MonetaryAccountProfile.php +++ b/app/Services/Bunq/Object/MonetaryAccountProfile.php @@ -23,6 +23,7 @@ declare(strict_types=1); namespace FireflyIII\Services\Bunq\Object; /** + * @codeCoverageIgnore * Class MonetaryAccountProfile. */ class MonetaryAccountProfile extends BunqObject diff --git a/app/Services/Bunq/Object/MonetaryAccountSetting.php b/app/Services/Bunq/Object/MonetaryAccountSetting.php index 0356b1aa83..f277ee4a79 100644 --- a/app/Services/Bunq/Object/MonetaryAccountSetting.php +++ b/app/Services/Bunq/Object/MonetaryAccountSetting.php @@ -23,6 +23,7 @@ declare(strict_types=1); namespace FireflyIII\Services\Bunq\Object; /** + * @codeCoverageIgnore * Class MonetaryAccountSetting. */ class MonetaryAccountSetting extends BunqObject diff --git a/app/Services/Bunq/Object/NotificationFilter.php b/app/Services/Bunq/Object/NotificationFilter.php index f6fe9bd3a1..eeda1703c2 100644 --- a/app/Services/Bunq/Object/NotificationFilter.php +++ b/app/Services/Bunq/Object/NotificationFilter.php @@ -23,6 +23,7 @@ declare(strict_types=1); namespace FireflyIII\Services\Bunq\Object; /** + * @codeCoverageIgnore * Class NotificationFilter. */ class NotificationFilter extends BunqObject diff --git a/app/Services/Bunq/Object/Payment.php b/app/Services/Bunq/Object/Payment.php index d9fb3072cd..86f416bfd6 100644 --- a/app/Services/Bunq/Object/Payment.php +++ b/app/Services/Bunq/Object/Payment.php @@ -27,6 +27,7 @@ use Carbon\Carbon; use FireflyIII\Exceptions\FireflyException; /** + * @codeCoverageIgnore * Class Payment */ class Payment extends BunqObject diff --git a/app/Services/Bunq/Object/ServerPublicKey.php b/app/Services/Bunq/Object/ServerPublicKey.php index 4a665fda99..eef521a6ac 100644 --- a/app/Services/Bunq/Object/ServerPublicKey.php +++ b/app/Services/Bunq/Object/ServerPublicKey.php @@ -23,6 +23,7 @@ declare(strict_types=1); namespace FireflyIII\Services\Bunq\Object; /** + * @codeCoverageIgnore * Class ServerPublicKey. */ class ServerPublicKey extends BunqObject diff --git a/app/Services/Bunq/Object/UserCompany.php b/app/Services/Bunq/Object/UserCompany.php index 13508afdb5..9655be2537 100644 --- a/app/Services/Bunq/Object/UserCompany.php +++ b/app/Services/Bunq/Object/UserCompany.php @@ -25,6 +25,7 @@ namespace FireflyIII\Services\Bunq\Object; use Carbon\Carbon; /** + * @codeCoverageIgnore * Class UserCompany. */ class UserCompany extends BunqObject diff --git a/app/Services/Bunq/Object/UserLight.php b/app/Services/Bunq/Object/UserLight.php index 2ffed83609..ffa9171bdc 100644 --- a/app/Services/Bunq/Object/UserLight.php +++ b/app/Services/Bunq/Object/UserLight.php @@ -25,6 +25,7 @@ namespace FireflyIII\Services\Bunq\Object; use Carbon\Carbon; use FireflyIII\Exceptions\FireflyException; /** + * @codeCoverageIgnore * Class UserLight. */ class UserLight extends BunqObject diff --git a/app/Services/Bunq/Object/UserPerson.php b/app/Services/Bunq/Object/UserPerson.php index 10a2737e20..e97a53306f 100644 --- a/app/Services/Bunq/Object/UserPerson.php +++ b/app/Services/Bunq/Object/UserPerson.php @@ -25,6 +25,7 @@ namespace FireflyIII\Services\Bunq\Object; use Carbon\Carbon; /** + * @codeCoverageIgnore * Class UserPerson. */ class UserPerson extends BunqObject