mirror of
https://github.com/devfake/flox.git
synced 2024-11-15 14:42:31 +01:00
8 lines
108 B
PHP
8 lines
108 B
PHP
|
<?php
|
||
|
|
||
|
const FIVE_MINUTES = 300;
|
||
|
|
||
|
function increaseTimeLimit()
|
||
|
{
|
||
|
set_time_limit(FIVE_MINUTES);
|
||
|
}
|