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
4 changes: 0 additions & 4 deletions src/Activity/ActivityOptions.php
Original file line number Diff line number Diff line change
Expand Up @@ -125,8 +125,6 @@ class ActivityOptions extends Options implements ActivityOptionsInterface
* Single-line fixed summary for this activity that will appear in UI/CLI.
* This can be in single-line Temporal Markdown format.
*
* @experimental This API is experimental and may change in the future.
*
* @since RoadRunner 2025.1.2
*/
#[Marshal(name: 'Summary')]
Expand Down Expand Up @@ -340,8 +338,6 @@ public function withPriority(Priority $priority): self
* Single-line fixed summary for this activity that will appear in UI/CLI.
* This can be in single-line Temporal Markdown format.
*
* @experimental This API is experimental and may change in the future.
*
* @return $this
*/
#[Pure]
Expand Down
4 changes: 0 additions & 4 deletions src/Activity/LocalActivityOptions.php
Original file line number Diff line number Diff line change
Expand Up @@ -69,8 +69,6 @@ class LocalActivityOptions extends Options implements ActivityOptionsInterface

/**
* Optional summary of the activity.
*
* @experimental This API is experimental and may change in the future.
*/
#[Marshal(name: 'Summary')]
public string $summary = '';
Expand Down Expand Up @@ -167,8 +165,6 @@ public function withRetryOptions(?RetryOptions $options): self
* Single-line fixed summary for this activity that will appear in UI/CLI.
* This can be in single-line Temporal Markdown format.
*
* @experimental This API is experimental and may change in the future.
*
* @return $this
*/
#[Pure]
Expand Down
3 changes: 0 additions & 3 deletions src/Client/Schedule/Action/StartWorkflowAction.php
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,6 @@ final class StartWorkflowAction extends ScheduleAction

/**
* @internal
* @experimental This feature is not stable and may change in the future.
*/
#[Marshal(name: 'user_metadata')]
public readonly UserMetadata $userMetadata;
Expand Down Expand Up @@ -281,7 +280,6 @@ public function withHeader(iterable|HeaderInterface $values): self
*
* This can be in single-line Temporal Markdown format.
*
* @experimental This feature is not stable and may change in the future.
*/
public function withStaticSummary(string $summary): self
{
Expand All @@ -295,7 +293,6 @@ public function withStaticSummary(string $summary): self
* This can be in Temporal Markdown format and can span multiple lines. This is a fixed value on the workflow
* that cannot be updated.
*
* @experimental This feature is not stable and may change in the future.
*/
public function withStaticDetails(string $details): self
{
Expand Down
6 changes: 0 additions & 6 deletions src/Client/WorkflowOptions.php
Original file line number Diff line number Diff line change
Expand Up @@ -162,16 +162,12 @@ final class WorkflowOptions extends Options

/**
* General fixed details for this workflow execution that will appear in UI/CLI.
*
* @experimental This feature is not stable and may change in the future.
*/
#[Marshal(name: 'StaticDetails')]
public string $staticDetails = '';

/**
* Single-line fixed summary for this workflow execution that will appear in UI/CLI.
*
* @experimental This feature is not stable and may change in the future.
*/
#[Marshal(name: 'StaticSummary')]
public string $staticSummary = '';
Expand Down Expand Up @@ -504,7 +500,6 @@ public function withTypedSearchAttributes(TypedSearchAttributes $attributes): se
*
* @return $this
* @since SDK 2.14.0
* @experimental This API might change in the future.
*/
#[Pure]
public function withStaticSummary(string $summary): self
Expand All @@ -522,7 +517,6 @@ public function withStaticSummary(string $summary): self
*
* @return $this
* @since SDK 2.14.0
* @experimental This API might change in the future.
*/
#[Pure]
public function withStaticDetails(string $details): self
Expand Down
3 changes: 0 additions & 3 deletions src/Interceptor/WorkflowOutboundCalls/TimerInput.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,6 @@ final class TimerInput
public function __construct(
public readonly \DateInterval $interval,

/**
* @experimental This API is experimental and may change in the future.
*/
public readonly ?TimerOptions $timerOptions,
) {}

Expand Down
6 changes: 0 additions & 6 deletions src/Workflow/ChildWorkflowOptions.php
Original file line number Diff line number Diff line change
Expand Up @@ -160,16 +160,12 @@ final class ChildWorkflowOptions extends Options

/**
* General fixed details for this workflow execution that will appear in UI/CLI.
*
* @experimental This feature is not stable and may change in the future.
*/
#[Marshal(name: 'StaticDetails')]
public string $staticDetails = '';

/**
* Single-line fixed summary for this workflow execution that will appear in UI/CLI.
*
* @experimental This feature is not stable and may change in the future.
*/
#[Marshal(name: 'StaticSummary')]
public string $staticSummary = '';
Expand Down Expand Up @@ -468,7 +464,6 @@ public function withParentClosePolicy(ParentClosePolicy|int $policy): self
*
* @return $this
* @since SDK 2.14.0
* @experimental This API might change in the future.
*/
#[Pure]
public function withStaticSummary(string $summary): self
Expand All @@ -486,7 +481,6 @@ public function withStaticSummary(string $summary): self
*
* @return $this
* @since SDK 2.14.0
* @experimental This API might change in the future.
*/
#[Pure]
public function withStaticDetails(string $details): self
Expand Down
2 changes: 0 additions & 2 deletions src/Workflow/TimerOptions.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,6 @@

/**
* TimerOptions is used to specify options for a timer.
*
* @experimental This API is experimental and may change in the future.
*/
final class TimerOptions
{
Expand Down