Skip to content

Commit

Permalink
Merge pull request #21 from samsonasik/apply-php74
Browse files Browse the repository at this point in the history
Apply PHP 7.4 syntax and typed property
  • Loading branch information
Ocramius committed Sep 17, 2022
2 parents 1849624 + da56a6f commit 69c636b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
3 changes: 1 addition & 2 deletions src/LaminasAcl.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,7 @@

class LaminasAcl implements AuthorizationInterface
{
/** @var Acl */
private $acl;
private Acl $acl;

public function __construct(Acl $acl)
{
Expand Down
3 changes: 1 addition & 2 deletions test/ConfigProviderTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,7 @@

class ConfigProviderTest extends TestCase
{
/** @var ConfigProvider */
private $provider;
private ConfigProvider $provider;

protected function setUp(): void
{
Expand Down

0 comments on commit 69c636b

Please sign in to comment.