| Total Complexity | 3 | 
| Total Lines | 30 | 
| Duplicated Lines | 0 % | 
| Coverage | 0% | 
| Changes | 0 | ||
| 1 | <?php | ||
| 23 | class ZendStreamFactory implements StreamFactoryInterface | ||
| 24 | { | ||
| 25 | /** | ||
| 26 | * @inheritdoc | ||
| 27 | */ | ||
| 28 | public function createStream(string $content = ''): StreamInterface | ||
| 35 | } | ||
| 36 | |||
| 37 | /** | ||
| 38 | * @inheritdoc | ||
| 39 | */ | ||
| 40 | public function createStreamFromFile(string $file, string $mode = 'r'): StreamInterface | ||
| 45 | } | ||
| 46 | |||
| 47 | /** | ||
| 48 | * @inheritdoc | ||
| 49 | */ | ||
| 50 | public function createStreamFromResource($resource): StreamInterface | ||
| 55 |