<?php trait ATrait { abstract public function foo( string $url ) : int; } class AClass { use ATrait; private function foo( string $url ) : int { return 10; } }
You have javascript disabled. You will not be able to edit any code.