Completed
Push — master ( 1eb78b...7ca7fc )
by Juuso
08:47 queued 03:48
created
src/AlgoliaManager.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -236,7 +236,7 @@  discard block
 block discarded – undo
236 236
         $records = $this->activeQueryChunker->chunk(
237 237
             $activeRecord->find(),
238 238
             500,
239
-            function ($activeRecordEntities) {
239
+            function($activeRecordEntities) {
240 240
                 return $this->getAlgoliaRecordsFromSearchableModelArray($activeRecordEntities);
241 241
             }
242 242
         );
@@ -244,7 +244,7 @@  discard block
 block discarded – undo
244 244
         $response = [];
245 245
 
246 246
         foreach ($indices as $index) {
247
-            $temporaryIndexName = 'tmp_' . $index->indexName;
247
+            $temporaryIndexName = 'tmp_'.$index->indexName;
248 248
 
249 249
             /** @var Index $temporaryIndex */
250 250
             $temporaryIndex = $this->initIndex($temporaryIndexName);
@@ -307,7 +307,7 @@  discard block
 block discarded – undo
307 307
     {
308 308
         $reflectionClass = new \ReflectionClass($class);
309 309
 
310
-        if (! $reflectionClass->implementsInterface(SearchableInterface::class)) {
310
+        if ( ! $reflectionClass->implementsInterface(SearchableInterface::class)) {
311 311
             throw new \InvalidArgumentException("The class: {$reflectionClass->name} doesn't implement leinonen\\Yii2Algolia\\SearchableInterface");
312 312
         }
313 313
     }
@@ -323,9 +323,9 @@  discard block
 block discarded – undo
323 323
     {
324 324
         $indexNames = $searchableModel->getIndices();
325 325
 
326
-        $indices = array_map(function ($indexName) {
326
+        $indices = array_map(function($indexName) {
327 327
             if ($this->env !== null) {
328
-                $indexName = $this->env . '_' . $indexName;
328
+                $indexName = $this->env.'_'.$indexName;
329 329
             }
330 330
 
331 331
             return $this->initIndex($indexName);
@@ -346,8 +346,8 @@  discard block
 block discarded – undo
346 346
         // Use the first element of the array to define what kind of models we are indexing.
347 347
         $arrayType = get_class($searchableModels[0]);
348 348
 
349
-        $algoliaRecords = array_map(function (SearchableInterface $searchableModel) use ($arrayType) {
350
-            if (! $searchableModel instanceof $arrayType) {
349
+        $algoliaRecords = array_map(function(SearchableInterface $searchableModel) use ($arrayType) {
350
+            if ( ! $searchableModel instanceof $arrayType) {
351 351
                 throw new \InvalidArgumentException('The given array should not contain multiple different classes');
352 352
             }
353 353
 
Please login to merge, or discard this patch.