Conditions | 3 |
Paths | 2 |
Total Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
39 | public function configure(Pomm $pomm) |
||
40 | { |
||
41 | foreach ($pomm->getSessionBuilders() as $name => $builder) { |
||
42 | $pomm->addPostConfiguration($name, function (Session $session) { |
||
43 | foreach ($this->poolers as $pooler) { |
||
44 | $session->registerClientPooler($pooler); |
||
45 | } |
||
46 | }); |
||
47 | } |
||
48 | } |
||
49 | } |
||
50 |