content = $content; } protected IContent $content; function print(): void { $content = $this->content->getContent(); c::write($content); } function __call($name, $args) { $content = func::call([$this->content, $name], ...$args); c::write($content); } }