You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Use enums (https://www.php.net/manual/en/language.types.enumerations.php) wherever possible, e.g. in OperationType. The setOperation method of OperationIndexParams expects a parameter of type OperationType, but MOVE and COPY are currently defined as a string, so calling
(new OperationIndexParams())
->setOperation(OperationType::MOVE)
generates the warning Expected parameter of type '\Algolia\AlgoliaSearch\Model\Search\OperationType', 'string' provided.
Client
All
Version
4.15.0
The text was updated successfully, but these errors were encountered:
Description
Use enums (https://www.php.net/manual/en/language.types.enumerations.php) wherever possible, e.g. in OperationType. The
setOperation
method ofOperationIndexParams
expects a parameter of typeOperationType
, butMOVE
andCOPY
are currently defined as a string, so callinggenerates the warning
Expected parameter of type '\Algolia\AlgoliaSearch\Model\Search\OperationType', 'string' provided
.Client
All
Version
4.15.0
The text was updated successfully, but these errors were encountered: