@@ -22,8 +22,6 @@ class Prompt_Builder_With_WP_Error_Tests extends Test_Case {
2222
2323 /**
2424 * Test that Prompt_Builder_With_WP_Error can be instantiated.
25- *
26- * @since n.e.x.t
2725 */
2826 public function test_instantiation (): void {
2927 $ registry = AiClient::defaultRegistry ();
@@ -35,8 +33,6 @@ public function test_instantiation(): void {
3533
3634 /**
3735 * Test that Prompt_Builder_With_WP_Error can be instantiated with initial prompt content.
38- *
39- * @since n.e.x.t
4036 */
4137 public function test_instantiation_with_prompt (): void {
4238 $ registry = AiClient::defaultRegistry ();
@@ -50,8 +46,6 @@ public function test_instantiation_with_prompt(): void {
5046 *
5147 * This tests the bug fix where methods that return the PromptBuilder instance
5248 * should instead return the Prompt_Builder_With_WP_Error decorator to allow proper chaining.
53- *
54- * @since n.e.x.t
5549 */
5650 public function test_method_chaining_returns_decorator (): void {
5751 $ registry = AiClient::defaultRegistry ();
@@ -107,8 +101,6 @@ public function test_method_chaining_returns_decorator(): void {
107101 * Test complex method chaining scenario.
108102 *
109103 * This tests that multiple methods can be chained together fluently.
110- *
111- * @since n.e.x.t
112104 */
113105 public function test_complex_method_chaining (): void {
114106 $ registry = AiClient::defaultRegistry ();
@@ -129,8 +121,6 @@ public function test_complex_method_chaining(): void {
129121
130122 /**
131123 * Test that boolean-returning methods do not return the decorator.
132- *
133- * @since n.e.x.t
134124 */
135125 public function test_boolean_methods_return_boolean (): void {
136126 $ registry = AiClient::defaultRegistry ();
@@ -144,8 +134,6 @@ public function test_boolean_methods_return_boolean(): void {
144134
145135 /**
146136 * Test that calling a non-existent method throws an exception.
147- *
148- * @since n.e.x.t
149137 */
150138 public function test_invalid_method_throws_exception (): void {
151139 $ registry = AiClient::defaultRegistry ();
@@ -159,8 +147,6 @@ public function test_invalid_method_throws_exception(): void {
159147
160148 /**
161149 * Test method chaining with with_history.
162- *
163- * @since n.e.x.t
164150 */
165151 public function test_method_chaining_with_history (): void {
166152 $ registry = AiClient::defaultRegistry ();
@@ -194,8 +180,6 @@ public function test_method_chaining_with_history(): void {
194180
195181 /**
196182 * Test method chaining with using_model_config.
197- *
198- * @since n.e.x.t
199183 */
200184 public function test_method_chaining_with_model_config (): void {
201185 $ registry = AiClient::defaultRegistry ();
@@ -213,8 +197,6 @@ public function test_method_chaining_with_model_config(): void {
213197 *
214198 * This test simulates an error state by directly setting the error property,
215199 * since fluent methods typically don't throw exceptions.
216- *
217- * @since n.e.x.t
218200 */
219201 public function test_error_state_fluent_calls_return_same_instance (): void {
220202 $ registry = AiClient::defaultRegistry ();
@@ -238,8 +220,6 @@ public function test_error_state_fluent_calls_return_same_instance(): void {
238220 * Test that terminating methods return WP_Error when in error state.
239221 *
240222 * This test simulates an error state by directly setting the error property.
241- *
242- * @since n.e.x.t
243223 */
244224 public function test_terminating_methods_return_wp_error_in_error_state (): void {
245225 $ registry = AiClient::defaultRegistry ();
@@ -260,8 +240,6 @@ public function test_terminating_methods_return_wp_error_in_error_state(): void
260240
261241 /**
262242 * Test that exception in terminating method is caught and returned as WP_Error.
263- *
264- * @since n.e.x.t
265243 */
266244 public function test_exception_in_terminating_method_caught_and_returned (): void {
267245 $ registry = AiClient::defaultRegistry ();
@@ -283,8 +261,6 @@ public function test_exception_in_terminating_method_caught_and_returned(): void
283261
284262 /**
285263 * Test that the wrapped builder is properly configured with the registry.
286- *
287- * @since n.e.x.t
288264 */
289265 public function test_wrapped_builder_has_correct_registry (): void {
290266 $ registry = AiClient::defaultRegistry ();
0 commit comments