Skip to content

Commit 2f0db3a

Browse files
committed
Add copyright declaration
1 parent 72a3137 commit 2f0db3a

12 files changed

Lines changed: 58 additions & 3 deletions

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
"php-http/mock-client": "^1.6",
5050
"phpunit/phpunit": "^11.5",
5151
"psy/psysh": "*",
52-
"sandfox.dev/code-standard": "^1.2025.05.07",
52+
"sandfox.dev/code-standard": "^1.2025.09.17",
5353
"squizlabs/php_codesniffer": "*",
5454
"symfony/cache": "^7.3",
5555
"vimeo/psalm": "^6.12"

src/CzechNationalBank/CentralBankFixingService.php

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
<?php
22

3+
/**
4+
* @copyright 2025 Anton Smirnov
5+
* @license MIT https://spdx.org/licenses/MIT.html
6+
*/
7+
38
declare(strict_types=1);
49

510
namespace Peso\Services\CzechNationalBank;

src/CzechNationalBank/Common.php

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
<?php
22

3+
/**
4+
* @copyright 2025 Anton Smirnov
5+
* @license MIT https://spdx.org/licenses/MIT.html
6+
*/
7+
38
declare(strict_types=1);
49

510
namespace Peso\Services\CzechNationalBank;

src/CzechNationalBank/OtherCurrenciesService.php

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
<?php
22

3+
/**
4+
* @copyright 2025 Anton Smirnov
5+
* @license MIT https://spdx.org/licenses/MIT.html
6+
*/
7+
38
declare(strict_types=1);
49

510
namespace Peso\Services\CzechNationalBank;

src/CzechNationalBankService.php

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
<?php
22

3+
/**
4+
* @copyright 2025 Anton Smirnov
5+
* @license MIT https://spdx.org/licenses/MIT.html
6+
*/
7+
38
declare(strict_types=1);
49

510
namespace Peso\Services;

tests/CentralBankFixingRequestTest.php

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
<?php
22

3+
/**
4+
* @copyright 2025 Anton Smirnov
5+
* @license MIT https://spdx.org/licenses/MIT.html
6+
*/
7+
38
declare(strict_types=1);
49

510
namespace Peso\Services\Tests;

tests/EdgeCasesTest.php

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
<?php
22

3+
/**
4+
* @copyright 2025 Anton Smirnov
5+
* @license MIT https://spdx.org/licenses/MIT.html
6+
*/
7+
38
declare(strict_types=1);
49

510
namespace Peso\Services\Tests;
@@ -15,8 +20,8 @@
1520
use Peso\Core\Requests\HistoricalExchangeRateRequest;
1621
use Peso\Core\Responses\ErrorResponse;
1722
use Peso\Core\Services\SDK\Exceptions\HttpFailureException;
18-
use Peso\Services\CzechNationalBank\OtherCurrenciesService;
1923
use Peso\Services\CzechNationalBank\CentralBankFixingService;
24+
use Peso\Services\CzechNationalBank\OtherCurrenciesService;
2025
use PHPUnit\Framework\TestCase;
2126
use stdClass;
2227

tests/Helpers/MockClient.php

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
<?php
22

3+
/**
4+
* @copyright 2025 Anton Smirnov
5+
* @license MIT https://spdx.org/licenses/MIT.html
6+
*/
7+
38
declare(strict_types=1);
49

510
namespace Peso\Services\Tests\Helpers;

tests/OtherCurrenciesRequestTest.php

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
<?php
22

3+
/**
4+
* @copyright 2025 Anton Smirnov
5+
* @license MIT https://spdx.org/licenses/MIT.html
6+
*/
7+
38
declare(strict_types=1);
49

510
namespace Peso\Services\Tests;

tests/SupportTest.php

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
<?php
22

3+
/**
4+
* @copyright 2025 Anton Smirnov
5+
* @license MIT https://spdx.org/licenses/MIT.html
6+
*/
7+
38
declare(strict_types=1);
49

510
namespace Peso\Services\Tests;
@@ -8,8 +13,8 @@
813
use Arokettu\Date\Date;
914
use Peso\Core\Requests\CurrentExchangeRateRequest;
1015
use Peso\Core\Requests\HistoricalExchangeRateRequest;
11-
use Peso\Services\CzechNationalBank\OtherCurrenciesService;
1216
use Peso\Services\CzechNationalBank\CentralBankFixingService;
17+
use Peso\Services\CzechNationalBank\OtherCurrenciesService;
1318
use PHPUnit\Framework\TestCase;
1419
use stdClass;
1520

0 commit comments

Comments
 (0)