-
-
Notifications
You must be signed in to change notification settings - Fork 453
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
187 additions
and
37 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
<?php | ||
|
||
namespace Doctrine\Bundle\DoctrineBundle\Middleware; | ||
|
||
use ArrayObject; | ||
use Doctrine\DBAL\Driver; | ||
use Doctrine\DBAL\Driver\Middleware; | ||
use Symfony\Bridge\Doctrine\Middleware\IdleConnection\Driver as IdleConnectionDriver; | ||
|
||
class IdleConnectionMiddleware implements Middleware, ConnectionNameAwareInterface | ||
{ | ||
private ArrayObject $connectionExpiries; | ||
/** @var array<string, int> */ | ||
private array $ttlByConnection; | ||
private string $connectionName; | ||
|
||
/** | ||
* @param ArrayObject<string, int> $connectionExpiries | ||
* @param array<string, int> $ttlByConnection | ||
*/ | ||
public function __construct(ArrayObject $connectionExpiries, array $ttlByConnection) | ||
{ | ||
$this->connectionExpiries = $connectionExpiries; | ||
$this->ttlByConnection = $ttlByConnection; | ||
} | ||
|
||
public function setConnectionName(string $name): void | ||
{ | ||
$this->connectionName = $name; | ||
} | ||
|
||
public function wrap(Driver $driver): Driver | ||
{ | ||
return new IdleConnectionDriver($driver, $this->connectionExpiries, $this->ttlByConnection[$this->connectionName], $this->connectionName); | ||
Check failure on line 34 in Middleware/IdleConnectionMiddleware.php GitHub Actions / Static Analysis with PsalmUndefinedClass
|
||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.