url = $url; } public function before($callable) { $this->before = $callable; } public function start() { if ($this->before) { $callable = $this->before; $callable(); } } public function __toString() { return $this->url; } }