From 8bdcb62b580df98fc5d5540edc2d8aa9a2760db4 Mon Sep 17 00:00:00 2001 From: Dimitris Savvopoulos Date: Thu, 4 Jan 2018 22:11:56 +0200 Subject: [PATCH] Apply fixes from StyleCI (#424) --- tests/TestsBase.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/TestsBase.php b/tests/TestsBase.php index 74ce4f8..c9287cc 100644 --- a/tests/TestsBase.php +++ b/tests/TestsBase.php @@ -135,7 +135,7 @@ protected function getPackageAliases($app) protected function enableQueryCounter() { $that = $this; - DB::listen(function($query) use ($that) { + DB::listen(function ($query) use ($that) { $that->queriesCount++; // echo("\n--- Query {$that->queriesCount}--- $query->sql\n"); });