GraphAware\Reco4PHP\Config\SimpleConfig::maxTime PHP Method

maxTime() public method

public maxTime ( )
    public function maxTime()
    {
        return $this->maxTime;
    }

Usage Example

 public function testCustomLimitAndTime()
 {
     $config = new SimpleConfig(100, 1000);
     $this->assertEquals(100, $config->limit());
     $this->assertEquals(1000, $config->maxTime());
 }