izzum\examples\trafficlight\TrafficLight::onColorFor PHP Метод

onColorFor() защищенный Метод

protected onColorFor ( $time )
    protected function onColorFor($time)
    {
        $difference = $this->switch_time + $time;
        if (time() >= $difference) {
            return true;
        }
        return false;
    }