Elgg\BatchUpgrader::__construct PHP Метод

__construct() публичный Метод

Constructor
public __construct ( Config $config )
$config Config Site configuration
    public function __construct(Config $config)
    {
        $this->config = $config;
        // Custom limit can be defined in elgg-config/settings.php if necessary
        if (empty($this->config->get('batch_run_time_in_secs'))) {
            $this->config->set('batch_run_time_in_secs', 4);
        }
    }
BatchUpgrader