Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"ext-curl": "*",
"ext-json": "*",
"google/common-protos": "^4.9",
"google/protobuf": "^4.31.1",
"google/protobuf": "^4.31.1 || ^5.34.0",
"grpc/grpc": "^1.57",
"internal/destroy": "^1.0",
"internal/promise": "^3.4",
Expand Down
5 changes: 0 additions & 5 deletions psalm-baseline.xml
Original file line number Diff line number Diff line change
Expand Up @@ -264,11 +264,6 @@
<code><![CDATA[getID]]></code>
</PossiblyNullReference>
</file>
<file src="src/Exception/Client/MultyOperation/OperationStatus.php">
<InvalidArgument>
<code><![CDATA[$message->getDetails()]]></code>
</InvalidArgument>
</file>
<file src="src/Exception/Client/ServiceClientException.php">
<ImplementedReturnTypeMismatch>
<code><![CDATA[RepeatedField]]></code>
Expand Down
5 changes: 0 additions & 5 deletions psalm.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,5 @@
<issueHandlers>
<MissingOverrideAttribute errorLevel="suppress" />
<ClassMustBeFinal errorLevel="suppress" />
<DeprecatedClass>
<errorLevel type="suppress">
<referencedClass name="Google\Protobuf\Internal\RepeatedField" />
</errorLevel>
</DeprecatedClass>
</issueHandlers>
</psalm>
2 changes: 1 addition & 1 deletion src/Exception/Client/MultyOperation/OperationStatus.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
namespace Temporal\Exception\Client\MultyOperation;

use Google\Protobuf\Any;
use Google\Protobuf\Internal\RepeatedField;
use Google\Protobuf\RepeatedField;
use Temporal\Api\Errordetails\V1\MultiOperationExecutionFailure\OperationStatus as OperationStatusMessage;
use Temporal\Exception\Client\UnpackDetailsTrait;

Expand Down
2 changes: 1 addition & 1 deletion src/Exception/Client/UnpackDetailsTrait.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
namespace Temporal\Exception\Client;

use Google\Protobuf\Any;
use Google\Protobuf\Internal\RepeatedField;
use Google\Protobuf\RepeatedField;
use GPBMetadata\Temporal\Api\Errordetails\V1\Message;

/**
Expand Down
2 changes: 1 addition & 1 deletion src/Internal/Marshaller/ProtoToArrayConverter.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
use Google\Protobuf\Internal\MapField;
use Google\Protobuf\Internal\Message;
use Google\Protobuf\Internal\OneofField;
use Google\Protobuf\Internal\RepeatedField;
use Google\Protobuf\RepeatedField;
use Google\Protobuf\Timestamp;
use Temporal\Api\Common\V1\Header;
use Temporal\Api\Common\V1\Memo;
Expand Down
Loading