| Total Complexity | 2 |
| Total Lines | 37 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 19 | final class Statement implements StatementHandler |
||
| 20 | { |
||
| 21 | /** |
||
| 22 | * @var TypeSupport |
||
| 23 | **/ |
||
| 24 | private $client; |
||
| 25 | |||
| 26 | /** |
||
| 27 | * @var StreamHandlerFactoryInterface |
||
| 28 | */ |
||
| 29 | private $streamHandlerFactory; |
||
| 30 | |||
| 31 | public function __construct(TypeSupport $client, StreamHandlerFactoryInterface $streamHandlerFactory) |
||
| 35 | } |
||
| 36 | |||
| 37 | public function create( |
||
| 59 |