From b5eed0c637cb24f7f353c08225d5671cc5d2a262 Mon Sep 17 00:00:00 2001 From: denghy Date: Mon, 14 Jan 2019 15:44:08 +0800 Subject: [PATCH] set_time_limit --- tests/Exports/CustomExport.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/tests/Exports/CustomExport.php b/tests/Exports/CustomExport.php index 8ebc9097..4102f76c 100644 --- a/tests/Exports/CustomExport.php +++ b/tests/Exports/CustomExport.php @@ -12,6 +12,12 @@ class CustomExport implements FromQuery, WithHeadings, WithRows { use Exportable; + public function __construct() + { + set_time_limit(-1); + ini_set('memory_limit', '4096m'); + } + /** * @return Builder */