sdk-php icon indicating copy to clipboard operation
sdk-php copied to clipboard

Temporal PHP SDK

Results 136 sdk-php issues
Sort by recently updated
recently updated
newest added

I see the docs at https://docs.temporal.io/php/introduction/ but is there a structured list of functions etc that the package provides?

enhancement

Having such workflow, that calls activity and doesn't use (not waits) for its result (no `yield` keyword): ```php #[WorkflowMethod] public function start() { $activity = Workflow::newActivityStub( SleepActivity::class, ActivityOptions::new()->withStartToCloseTimeout(20) ); $activity->wait();...

Bug

### Describe the bug Sometimes when a child worker process throws an exception, the parent worker process throws the following panic error: ``` PanicError: flush queue: SoftJobError: codec_execute: sync_worker_exec: sync_worker_exec_payload:...

Bug

Hi, thanks for the php sdk. Is there any plan on adding upsert Search Attribute in the php sdk ?

Feature

### Describe the bug If you pass associative array as signal parameter, Temporal converts it to \stdClass. But you cannot set \stdClass as a param type in signal's method. ###...

Bug

See original issue: temporalio/sdk-features#51

Is there any best practice to integrate temporal with sentry for error logging? I know that I can use sentry php sdk, try catch in my code, and send the...

Feature
Question