From bec1ef3b0ee6b676a15493f2743b50698b4c1ab0 Mon Sep 17 00:00:00 2001 From: roxblnfk Date: Thu, 29 Aug 2024 00:08:22 +0400 Subject: [PATCH] Format examples in docs --- src/Config/ConnectionConfig.php | 16 ++++++---------- 1 file changed, 6 insertions(+), 10 deletions(-) diff --git a/src/Config/ConnectionConfig.php b/src/Config/ConnectionConfig.php index de1c088..a175bd6 100644 --- a/src/Config/ConnectionConfig.php +++ b/src/Config/ConnectionConfig.php @@ -9,19 +9,15 @@ * * How to connect to local Temporal server: * - * ```php - * ConnectionConfig::createInsecure('localhost:7233') - * ``` + * ConnectionConfig::createInsecure('localhost:7233'), * * How to connect to Temporal Cloud: * - * ```php - * ConnectionConfig::createCloud( - * address: 'foo-bar-default.baz.tmprl.cloud:7233', - * privateKey: '/my-project.key', - * certChain: '/my-project.pem', - * ) - * ``` + * ConnectionConfig::createCloud( + * address: 'foo-bar-default.baz.tmprl.cloud:7233', + * privateKey: '/my-project.key', + * certChain: '/my-project.pem', + * ), */ final class ConnectionConfig {