<?php
trait Hello {
abstract public function getWorld($a, $b, $c);
}
class MyHelloWorld {
use Hello;
public function getWorld() {
return $this->world;
}
}
Fatal error: Declaration of MyHelloWorld::getWorld() must be compatible with Hello::getWorld($a, $b, $c) in /in/tYAmu on line 9
Process exited with code 255.