From 66380c9f3549a77d5239cdcc36423bd6548619b2 Mon Sep 17 00:00:00 2001
From: Martynas Sudintas <martynas.sudintas@nfq.lt>
Date: Mon, 19 Jan 2015 10:30:29 +0200
Subject: [PATCH] ONGR strict psr fixes

---
 Aggregation/TopHitsAggregationTest.php | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/Aggregation/TopHitsAggregationTest.php b/Aggregation/TopHitsAggregationTest.php
index cdb12cb..11c9afa 100644
--- a/Aggregation/TopHitsAggregationTest.php
+++ b/Aggregation/TopHitsAggregationTest.php
@@ -32,7 +32,9 @@ class TopHitsAggregationTest extends \PHPUnit_Framework_TestCase
         $expectedAgg->from = 1;
         $expectedAgg->sort = $sorts->toArray();
         $expected = [
-            'agg_test' => ['top_hits' => $expectedAgg]
+            'agg_test' => [
+                'top_hits' => $expectedAgg,
+            ],
         ];
 
         $this->assertEquals($expected, $aggregation->toArray());
-- 
GitLab