We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3ffb613 commit d1bc31fCopy full SHA for d1bc31f
tests/IndexTest.php
@@ -43,7 +43,7 @@ public function document_to_model()
43
Customer::all()
44
->each(function (Customer $customer):void {
45
$document = $customer->toElasticaDocument($this->customerIndex);
46
-$model =$this->customerIndex->getModelInstance($document);
+ $model = $this->customerIndex->getModelInstance($document);
47
$this->assertInstanceOf(Customer::class, $model);
48
$this->assertSame($customer->id, $model->id);
49
});
0 commit comments