@@ -183,7 +183,7 @@ public function testGetHandlesJsonExceptionDuringFormatting(): void
183183 {
184184 $ request = new GetPromptRequest ('json_error_prompt ' , []);
185185 $ prompt = $ this ->createValidPrompt ('json_error_prompt ' );
186-
186+
187187 // Create a mock PromptReference that will throw JsonException during formatResult
188188 $ promptReference = $ this ->createMock (PromptReference::class);
189189 $ promptReference ->expects ($ this ->once ())
@@ -462,7 +462,7 @@ public function testGetReflectsFormattedMessagesCorrectly(): void
462462 $ request = new GetPromptRequest ('format_test_prompt ' , []);
463463 $ prompt = $ this ->createValidPrompt ('format_test_prompt ' );
464464 $ promptReference = new PromptReference ($ prompt , fn () => 'Format test ' );
465-
465+
466466 // Test that the formatted result from PromptReference.formatResult is properly returned
467467 $ handlerResult = [
468468 'role ' => 'user ' ,
@@ -490,7 +490,7 @@ public function testGetReflectsFormattedMessagesCorrectly(): void
490490 }
491491
492492 /**
493- * Test that invalid handler results throw RuntimeException from PromptReference.formatResult()
493+ * Test that invalid handler results throw RuntimeException from PromptReference.formatResult().
494494 */
495495 public function testGetThrowsRuntimeExceptionForInvalidHandlerResult (): void
496496 {
@@ -517,7 +517,7 @@ public function testGetThrowsRuntimeExceptionForInvalidHandlerResult(): void
517517 }
518518
519519 /**
520- * Test that null result from handler throws RuntimeException
520+ * Test that null result from handler throws RuntimeException.
521521 */
522522 public function testGetThrowsRuntimeExceptionForNullHandlerResult (): void
523523 {
@@ -544,7 +544,7 @@ public function testGetThrowsRuntimeExceptionForNullHandlerResult(): void
544544 }
545545
546546 /**
547- * Test that scalar result from handler throws RuntimeException
547+ * Test that scalar result from handler throws RuntimeException.
548548 */
549549 public function testGetThrowsRuntimeExceptionForScalarHandlerResult (): void
550550 {
@@ -571,7 +571,7 @@ public function testGetThrowsRuntimeExceptionForScalarHandlerResult(): void
571571 }
572572
573573 /**
574- * Test that boolean result from handler throws RuntimeException
574+ * Test that boolean result from handler throws RuntimeException.
575575 */
576576 public function testGetThrowsRuntimeExceptionForBooleanHandlerResult (): void
577577 {
@@ -598,7 +598,7 @@ public function testGetThrowsRuntimeExceptionForBooleanHandlerResult(): void
598598 }
599599
600600 /**
601- * Test that object result from handler throws RuntimeException
601+ * Test that object result from handler throws RuntimeException.
602602 */
603603 public function testGetThrowsRuntimeExceptionForObjectHandlerResult (): void
604604 {
0 commit comments