Skip to content

Commit

Permalink
Merge pull request #5 from answear/update-to-symfony-6-4
Browse files Browse the repository at this point in the history
Update to symfony 6.4
  • Loading branch information
Wiktor6 authored Jun 11, 2024
2 parents 68e3a21 + 5687743 commit 826dea1
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .php-cs-fixer.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
'strict_param' => false,
'array_syntax' => ['syntax' => 'short'],
'concat_space' => ['spacing' => 'one'],
'phpdoc_align' => [],
'phpdoc_align' => ['align' => 'left'],
'phpdoc_summary' => false,
'void_return' => false,
'phpdoc_var_without_name' => false,
Expand Down
14 changes: 7 additions & 7 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,20 +9,20 @@
"guzzlehttp/guzzle": "^6.0|^7.0",
"marc-mabe/php-enum": "^3.0|^4.3",
"psr/log": "^1.0",
"symfony/http-kernel": "^5.4|^6.0",
"symfony/property-info": "^5.4|^6.0",
"symfony/serializer": "^5.4|^6.0",
"symfony/http-kernel": "^5.4|^6.0|^6.4",
"symfony/property-info": "^5.4|^6.0|^6.4",
"symfony/serializer": "^5.4|^6.0|^6.4",
"webmozart/assert": "^1.10"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.4",
"friendsofphp/php-cs-fixer": "^3.58",
"matthiasnoback/symfony-config-test": "^4.3",
"phpro/grumphp": "^1.5.0",
"phpstan/phpstan": "^1.4",
"phpro/grumphp": "^1.5.0|^2.5",
"phpstan/phpstan": "^1.11",
"phpstan/phpstan-webmozart-assert": "^1.0",
"phpunit/phpunit": "^9.5",
"roave/security-advisories": "dev-master",
"symfony/phpunit-bridge": "6.1.*"
"symfony/phpunit-bridge": "6.4.*"
},
"autoload": {
"psr-4": {
Expand Down
3 changes: 0 additions & 3 deletions src/Exception/MalformedResponse.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,6 @@

class MalformedResponse extends \RuntimeException
{
/**
* @var mixed
*/
private $response;

public function __construct($message, $response, ?\Throwable $previous = null)
Expand Down
2 changes: 1 addition & 1 deletion tests/Integration/Service/ParcelShopsServiceTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ class ParcelShopsServiceTest extends TestCase
use MockGuzzleTrait;
use StationsResponseTrait;

private Client $client;
private Client $client;
private ConfigProvider $configProvider;

public function setUp(): void
Expand Down

0 comments on commit 826dea1

Please sign in to comment.