@@ -139,7 +139,7 @@ public function test_wheres()
139139 $ search = Comment::search ('kuku ' )->whereIn ('author ' , ['toto ' , 'tutu ' ]);
140140 $ this ->assertEquals (3 , $ search ->count ());
141141 $ this ->assertEquals (3 , $ search ->get ()->count ());
142-
142+
143143 $ search = Comment::search ('kuku ' )
144144 ->whereIn ('author ' , ['toto ' , 'kiki ' ])
145145 ->where ('post_id ' , 1 );
@@ -177,7 +177,9 @@ public function test_forwarded_scope()
177177
178178 public function test_macro_has_priority_over_scope ()
179179 {
180- ScoutBuilder::macro ('author ' , function () { return 'gargamel ' ; });
180+ ScoutBuilder::macro ('author ' , function () {
181+ return 'gargamel ' ;
182+ });
181183 $ this ->assertEquals ('gargamel ' , Comment::search ('schtroumpf ' )->author ());
182184 }
183185
@@ -244,7 +246,7 @@ public function test_filters()
244246
245247 /**
246248 * @dataProvider stopWordsProvider
247- */
249+ */
248250 public function test_stopwords ($ config , $ content , $ expectedIndexedContent )
249251 {
250252 app ('config ' )->set ('scout.sqlout.stopwords ' , $ config );
@@ -379,7 +381,9 @@ public function test_paginate()
379381 $ this ->assertEquals (2 , $ paginator ->currentPage ());
380382 $ this ->assertEquals (
381383 $ ids ->skip (2 )->take (2 )->values ()->all (),
382- array_map (function ($ item ) { return $ item ->id ; }, $ paginator ->items ())
384+ array_map (function ($ item ) {
385+ return $ item ->id ;
386+ }, $ paginator ->items ())
383387 );
384388 }
385389
0 commit comments