Skip to content

Commit

Permalink
Creating RedisDB to Triggers bridge (#20)
Browse files Browse the repository at this point in the history
  • Loading branch information
actions-user committed Nov 3, 2022
1 parent e3619c7 commit 2b0e31c
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 11 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
"pds/skeleton": "^1.0",
"php-parallel-lint/php-parallel-lint": "^1.3",
"phpstan/extension-installer": "^1.1",
"phpstan/phpstan": "^1.8",
"phpstan/phpstan": "1.8.11",
"phpstan/phpstan-deprecation-rules": "^1.0",
"phpstan/phpstan-doctrine": "^1.3",
"phpstan/phpstan-nette": "^1.1",
Expand Down
4 changes: 1 addition & 3 deletions src/Events/AfterConnectorStart.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,7 @@
class AfterConnectorStart extends EventDispatcher\Event
{

public function __construct(
private readonly Entities\Connectors\Connector $connector,
)
public function __construct(private readonly Entities\Connectors\Connector $connector)
{
}

Expand Down
4 changes: 1 addition & 3 deletions src/Events/BeforeConnectorStart.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,7 @@
class BeforeConnectorStart extends EventDispatcher\Event
{

public function __construct(
private readonly Entities\Connectors\Connector $connector,
)
public function __construct(private readonly Entities\Connectors\Connector $connector)
{
}

Expand Down
4 changes: 1 addition & 3 deletions src/Events/ConnectorStartup.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,7 @@
class ConnectorStartup extends EventDispatcher\Event
{

public function __construct(
private readonly Entities\Connectors\Connector $connector,
)
public function __construct(private readonly Entities\Connectors\Connector $connector)
{
}

Expand Down
2 changes: 1 addition & 1 deletion tests/cases/unit/DbTestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ private function setupDatabase(): void
if (!$this->isDatabaseSetUp) {
$db = $this->getDb();

/** @var Array<ORM\Mapping\ClassMetadata> $metadatas */
/** @var list<ORM\Mapping\ClassMetadata> $metadatas */
$metadatas = $this->getEntityManager()->getMetadataFactory()->getAllMetadata();
$schemaTool = new ORM\Tools\SchemaTool($this->getEntityManager());

Expand Down

0 comments on commit 2b0e31c

Please sign in to comment.