| Total Complexity | 5 | 
| Total Lines | 65 | 
| Duplicated Lines | 0 % | 
| Coverage | 100% | 
| Changes | 1 | ||
| Bugs | 0 | Features | 0 | 
| 1 | <?php | ||
| 12 | class StreamWrapper | ||
| 13 | { | ||
| 14 | /** | ||
| 15 | * The name of the stream wrapper. | ||
| 16 | * | ||
| 17 | * @var string | ||
| 18 | */ | ||
| 19 | public const NAME = 'cerbero-json-objects'; | ||
| 20 | |||
| 21 | /** | ||
| 22 | * The stream context. | ||
| 23 | * | ||
| 24 | * @var resource | ||
| 25 | */ | ||
| 26 | public $context; | ||
| 27 | |||
| 28 | /** | ||
| 29 | * The stream. | ||
| 30 | * | ||
| 31 | * @var \Psr\Http\Message\StreamInterface | ||
| 32 | */ | ||
| 33 | protected $stream; | ||
| 34 | |||
| 35 | /** | ||
| 36 | * Open the stream | ||
| 37 | * | ||
| 38 | * @param string $path | ||
| 39 | * @param string $mode | ||
| 40 | * @param int $options | ||
| 41 | * @param mixed $opened_path | ||
| 42 | * @return bool | ||
| 43 | */ | ||
| 44 | 8 | public function stream_open(string $path, string $mode, int $options, &$opened_path): bool | |
| 45 |     { | ||
| 46 | 8 | $options = stream_context_get_options($this->context); | |
| 47 | 8 | $stream = $options[static::NAME]['stream'] ?? null; | |
| 48 | |||
| 49 | 8 |         if (!$stream instanceof StreamInterface || !$stream->isReadable()) { | |
| 50 | 3 | return false; | |
| 51 | } | ||
| 52 | |||
| 53 | 5 | $this->stream = $stream; | |
| 54 | |||
| 55 | 5 | return true; | |
| 56 | } | ||
| 57 | |||
| 58 | /** | ||
| 59 | * Determine whether the pointer is at the end of the stream | ||
| 60 | * | ||
| 61 | * @return bool | ||
| 62 | */ | ||
| 63 | 2 | public function stream_eof(): bool | |
| 66 | } | ||
| 67 | |||
| 68 | /** | ||
| 69 | * Read from the stream | ||
| 70 | * | ||
| 71 | * @param int $count | ||
| 72 | * @return string | ||
| 73 | */ | ||
| 74 | 1 | public function stream_read(int $count): string | |
| 77 | } | ||
| 78 | } | ||
| 79 | 
This check looks for parameters that have been defined for a function or method, but which are not used in the method body.