reformat code

This commit is contained in:
2025-01-05 15:20:56 +01:00
bovenliggende 19338d2a58
commit 3911584ea7
28 gewijzigde bestanden met toevoegingen van 87 en 37 verwijderingen

Bestand weergeven

@ -13,6 +13,8 @@
* @link https://www.oxidmodule.com
*/
declare(strict_types=1);
namespace D3\KlicktippPhpClient\tests\integration\Resources;
use D3\KlicktippPhpClient\Entities\Subscriber as SubscriberEntity;
@ -54,7 +56,7 @@ class SubscriberTest extends IntegrationTestCase
* @covers \D3\KlicktippPhpClient\Resources\Subscriber::index
* @dataProvider indexDataProvider
*/
public function testIndex(ResponseInterface $response, ?SubscriberList $expected, bool $expectException = false)
public function testIndex(ResponseInterface $response, ?SubscriberList $expected, bool $expectException = false): void
{
$sut = new Subscriber($this->getConnectionMock($response));
@ -96,7 +98,7 @@ class SubscriberTest extends IntegrationTestCase
* @covers \D3\KlicktippPhpClient\Resources\Subscriber::getEntity
* @dataProvider getDataProvider
*/
public function testGet(ResponseInterface $response, ?array $expected, bool $expectException = false)
public function testGet(ResponseInterface $response, ?array $expected, bool $expectException = false): void
{
$sut = new Subscriber($this->getConnectionMock($response));