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