There was an error while loading. Please reload this page.
1 parent f42266f commit 3ae5f8aCopy full SHA for 3ae5f8a
tests/Configs/github-actions.php
@@ -2,16 +2,16 @@
2
3
use Phpfastcache\Drivers\Arangodb\Config as ArangodbConfig;
4
5
-return (fn(ArangodbConfig $config) => $config->setItemDetailedDate(true)
+return (new ArangodbConfig())
6
/*
7
$config->setTraceFunction(\Closure::fromCallable(static function ($type, $data) use ($testHelper){
8
$testHelper->printDebugText(sprintf('Trace for %s: %s', strtoupper($type), $data));
9
}));
10
*/
11
+ ->setItemDetailedDate(true)
12
->setCollection('phpfastcache')
13
->setAuthUser('phpfastcache')
14
->setAuthPasswd('travis')
15
->setDatabase('phpfastcache')
16
->setConnectTimeout(5)
- ->setAutoCreate(true)
17
-)(new ArangodbConfig());
+ ->setAutoCreate(true);
0 commit comments