-
-
Notifications
You must be signed in to change notification settings - Fork 455
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
5 changed files
with
61 additions
and
25 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,37 @@ | ||
<?php | ||
|
||
namespace Doctrine\Bundle\DoctrineBundle\Middleware; | ||
|
||
use Doctrine\DBAL\Driver; | ||
use Doctrine\DBAL\Driver\Middleware; | ||
use Symfony\Bridge\Doctrine\Middleware\AutoClose\AutoCloseDriver; | ||
|
||
class AutoCloseMiddleware implements Middleware, ConnectionNameAwareInterface | ||
{ | ||
private \ArrayObject $connectionExpiries; | ||
private string $connectionName; | ||
private array $timeToLiveByConnection; | ||
Check failure on line 13 in Middleware/AutoCloseMiddleware.php GitHub Actions / Coding Standards / Coding Standards (8.2)
|
||
|
||
/** | ||
* @param array<string, int> $timeToLiveByConnection | ||
*/ | ||
public function __construct( | ||
\ArrayObject $connectionExpiries, | ||
array $timeToLiveByConnection, | ||
string $connectionName = 'default' | ||
) { | ||
$this->timeToLiveByConnection = $timeToLiveByConnection; | ||
$this->connectionName = $connectionName; | ||
$this->connectionExpiries = $connectionExpiries; | ||
} | ||
|
||
public function setConnectionName(string $name): void | ||
{ | ||
$this->connectionName = $name; | ||
} | ||
|
||
public function wrap(Driver $driver): Driver | ||
{ | ||
return new AutoCloseDriver($driver, $this->connectionExpiries, $this->timeToLiveByConnection, $this->connectionName); | ||
Check failure on line 35 in Middleware/AutoCloseMiddleware.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