name = $name; $this->type = $type; $this->stream = $stream; $this->size = $size; } public function getName(): ?string { return $this->name; } public function getType(): ?string { return $this->type; } public function getStream(): StreamInterface { return $this->stream; } public function getSize(): int { return $this->size; } }