Skip to content

Commit

Permalink
Update dependency laminas/laminas-validator to ^2.47.0 (#56)
Browse files Browse the repository at this point in the history
* Update dependency laminas/laminas-validator to ^2.47.0

| datasource | package                   | from   | to     |
| ---------- | ------------------------- | ------ | ------ |
| packagist  | laminas/laminas-validator | 2.46.0 | 2.47.0 |

* CS Fix

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Filippo Tessarotto <[email protected]>
  • Loading branch information
renovate[bot] and Slamdunk authored Jan 17, 2024
1 parent 0a27836 commit bf867b0
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
"laminas/laminas-mail": "^2.25.1",
"laminas/laminas-mvc": "^3.7.0",
"laminas/laminas-paginator": "^2.18.1",
"laminas/laminas-validator": "^2.46.0",
"laminas/laminas-validator": "^2.47.0",
"phpstan/phpstan-deprecation-rules": "^1.1.4",
"phpstan/phpstan-phpunit": "^1.3.15",
"phpunit/phpunit": "^9.6.15",
Expand Down
2 changes: 1 addition & 1 deletion src/Rules/Laminas/ServiceManagerGetMethodCallRule.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public function __construct(

public function getNodeType(): string
{
return Node\Expr\MethodCall::class;
return MethodCall::class;
}

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@ final class InteropContainerGetDynamicReturnTypeExtension extends AbstractServic
{
public function getClass(): string
{
return ContainerInterface::class;
return Containerinterface::class;
}
}

0 comments on commit bf867b0

Please sign in to comment.