Skip to content

Commit 7c87d7a

Browse files
authored
BUGFIX: Fix deprecation warning with PHP 8
This removes the warning `PHP Deprecated: Required parameter $response follows optional parameter $id in Application/Flowpack.ElasticSearch/Classes/Domain/Factory/DocumentFactory.php on line 40`
1 parent 04d3bbe commit 7c87d7a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Classes/Domain/Factory/DocumentFactory.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ class DocumentFactory
3737
* @return Model\Document
3838
* @throws DocumentPropertiesMismatchException
3939
*/
40-
public function createFromResponse(Model\AbstractType $type, $id = null, Response $response)
40+
public function createFromResponse(Model\AbstractType $type, $id, Response $response)
4141
{
4242
$content = $response->getTreatedContent();
4343

0 commit comments

Comments
 (0)