1 | <?php |
||
2 | namespace Mezon\PdoCrud\Tests; |
||
3 | |||
4 | use Mezon\PdoCrud\ApropriateConnectionTrait; |
||
5 | use Mezon\PdoCrud\PdoCrud; |
||
6 | |||
7 | class TraitClient extends TraitClientBase |
||
8 | { |
||
9 | public function getApropriateConnection(): PdoCrud |
||
10 | { |
||
11 | return $this->getConnection([ |
||
0 ignored issues
–
show
Bug
Best Practice
introduced
by
![]() |
|||
12 | 'default-db-connection', |
||
13 | 'exact-db-connection' |
||
14 | ]); |
||
15 | } |
||
16 | } |
||
17 |