| 1 | <?php |
||
| 18 | class Connection implements Contract\ConnectionInterface |
||
| 19 | { |
||
| 20 | use HasRouterTrait; |
||
| 21 | use HasRealmTrait; |
||
| 22 | use HasSessionTrait; |
||
| 23 | |||
| 24 | public function __construct(Contract\RouterInterface $router, Contract\RealmInterface $realm, Contract\SessionInterface $session = null) |
||
| 32 | |||
| 33 | public function confirm(Contract\SessionInterface $session) |
||
| 37 | } |
||
| 38 |