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

limit() public method

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

Usage Example

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