<?php interface Counter { /** @return self */ public function count(); /** @return int */ public function getCount(); } class FluentCounter implements Counter { private $count = 0; public function count() { $this->count += 1; return $this; } public function getCount() { return $this->count; } } $counter = new FluentCounter(); $counter = $counter->count()->count()->count(); echo $counter->getCount();
You have javascript disabled. You will not be able to edit any code.