<?php final class Word { private $word; public function __construct(string $word) { $this->word = $word; } public function reverse(): self { return new self(strrev($this->word)); } public function __toString() { return $this->word; } } $word = new Word('potato'); echo $word->reverse();
You have javascript disabled. You will not be able to edit any code.