name = $name; $this->size = $size; } /** * @return string */ public function getName(): string { return $this->name; } /** * @return int */ public function getSize(): int { return $this->size; } /** * @param string $prefix * @return void */ public function display(string $prefix = ''): void { echo $prefix . ":file:" . $this->name . '(' . $this->size . 'bytes)' . PHP_EOL; } }