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

__construct() public method

public __construct ( integer | null $limit = null, integer | null $maxTime = null )
$limit integer | null
$maxTime integer | null
    public function __construct($limit = null, $maxTime = null)
    {
        $this->limit = null !== $limit ? $limit : self::UNLIMITED;
        $this->maxTime = null !== $maxTime ? $maxTime : self::UNLIMITED;
    }