phpantom_lsp 0.7.0

Fast PHP language server with deep type intelligence. Generics, Laravel, PHPStan annotations. Ready in an instant.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
//! Integration tests for the "Add @throws" code action.
//!
//! These tests exercise the full pipeline: a PHPStan diagnostic with
//! identifier `missingType.checkedException` triggers a code action
//! that inserts a `@throws` tag into the method docblock and (when
//! needed) adds a `use` import for the exception class.

use crate::common::{
    apply_edits, create_test_backend, extract_edits, get_code_actions_at, inject_phpstan_diag,
    resolve_action,
};
use tower_lsp::lsp_types::*;

/// Find the "Add @throws" code action.
fn find_add_throws_action(actions: &[CodeActionOrCommand]) -> Option<&CodeAction> {
    actions.iter().find_map(|a| match a {
        CodeActionOrCommand::CodeAction(ca) if ca.title.starts_with("Add @throws") => Some(ca),
        _ => None,
    })
}

// ── Basic: adds @throws into existing multi-line docblock ───────────────────

#[test]
fn adds_throws_to_existing_docblock() {
    let backend = create_test_backend();
    let uri = "file:///test.php";
    let content = r#"<?php
namespace App\Controllers;

class FooController {
    /**
     * Do something.
     */
    public function bar(): void {
        throw new \App\Exceptions\BarException();
    }
}
"#;
    backend.update_ast(uri, content);

    inject_phpstan_diag(
        &backend,
        uri,
        8, // the throw line
        "Method App\\Controllers\\FooController::bar() throws checked exception App\\Exceptions\\BarException but it's missing from the PHPDoc @throws tag.",
        "missingType.checkedException",
    );

    let actions = get_code_actions_at(&backend, uri, content, 8, 10);
    let action = find_add_throws_action(&actions).expect("should offer Add @throws action");

    assert_eq!(action.kind, Some(CodeActionKind::QUICKFIX));
    assert_eq!(action.is_preferred, Some(true));
    assert!(
        action.title.contains("BarException"),
        "title should mention exception: {}",
        action.title
    );

    let resolved = resolve_action(&backend, uri, content, action);
    let edits = extract_edits(&resolved);
    let result = apply_edits(content, &edits);

    assert!(
        result.contains("@throws BarException"),
        "should insert @throws tag:\n{}",
        result
    );
    assert!(
        result.contains("use App\\Exceptions\\BarException;"),
        "should add use import:\n{}",
        result
    );
}

// ── No import needed when exception is in same namespace ────────────────────

#[test]
fn no_import_when_same_namespace() {
    let backend = create_test_backend();
    let uri = "file:///test.php";
    let content = r#"<?php
namespace App\Exceptions;

class Thrower {
    /**
     * Do something.
     */
    public function go(): void {
        throw new BarException();
    }
}
"#;
    backend.update_ast(uri, content);

    inject_phpstan_diag(
        &backend,
        uri,
        8,
        "Method App\\Exceptions\\Thrower::go() throws checked exception App\\Exceptions\\BarException but it's missing from the PHPDoc @throws tag.",
        "missingType.checkedException",
    );

    let actions = get_code_actions_at(&backend, uri, content, 8, 10);
    let action = find_add_throws_action(&actions).expect("should offer Add @throws action");

    let resolved = resolve_action(&backend, uri, content, action);
    let edits = extract_edits(&resolved);
    let result = apply_edits(content, &edits);

    assert!(
        result.contains("@throws BarException"),
        "should insert @throws tag:\n{}",
        result
    );
    // Should NOT add a use import — same namespace.
    assert!(
        !result.contains("use App\\Exceptions\\BarException"),
        "should NOT add use import for same-namespace class:\n{}",
        result
    );
}

// ── No import when already imported ─────────────────────────────────────────

#[test]
fn no_import_when_already_imported() {
    let backend = create_test_backend();
    let uri = "file:///test.php";
    let content = r#"<?php
namespace App\Controllers;

use App\Exceptions\BarException;

class FooController {
    /**
     * Do something.
     */
    public function bar(): void {
        throw new BarException();
    }
}
"#;
    backend.update_ast(uri, content);

    inject_phpstan_diag(
        &backend,
        uri,
        10,
        "Method App\\Controllers\\FooController::bar() throws checked exception App\\Exceptions\\BarException but it's missing from the PHPDoc @throws tag.",
        "missingType.checkedException",
    );

    let actions = get_code_actions_at(&backend, uri, content, 10, 10);
    let action = find_add_throws_action(&actions).expect("should offer action");

    let resolved = resolve_action(&backend, uri, content, action);
    let edits = extract_edits(&resolved);
    let result = apply_edits(content, &edits);

    assert!(
        result.contains("@throws BarException"),
        "should insert @throws tag:\n{}",
        result
    );
    // Count occurrences of the use statement — should still be exactly 1.
    let use_count = result.matches("use App\\Exceptions\\BarException;").count();
    assert_eq!(
        use_count, 1,
        "should NOT duplicate existing use import:\n{}",
        result
    );
}

// ── Creates new docblock when none exists ───────────────────────────────────

#[test]
fn creates_docblock_when_none_exists() {
    let backend = create_test_backend();
    let uri = "file:///test.php";
    let content = r#"<?php
namespace App\Controllers;

class FooController {
    public function bar(): void {
        throw new \App\Exceptions\BarException();
    }
}
"#;
    backend.update_ast(uri, content);

    inject_phpstan_diag(
        &backend,
        uri,
        5,
        "Method App\\Controllers\\FooController::bar() throws checked exception App\\Exceptions\\BarException but it's missing from the PHPDoc @throws tag.",
        "missingType.checkedException",
    );

    let actions = get_code_actions_at(&backend, uri, content, 5, 10);
    let action = find_add_throws_action(&actions).expect("should offer action");

    let resolved = resolve_action(&backend, uri, content, action);
    let edits = extract_edits(&resolved);
    let result = apply_edits(content, &edits);

    assert!(
        result.contains("/**"),
        "should create a docblock:\n{}",
        result
    );
    assert!(
        result.contains("@throws BarException"),
        "should insert @throws tag:\n{}",
        result
    );
    assert!(
        result.contains("use App\\Exceptions\\BarException;"),
        "should add use import:\n{}",
        result
    );
    // The generated docblock must be aligned with the method signature.
    // Each docblock line should start with exactly the same indentation
    // as `public function bar`.
    let expected_fragment =
        "    /**\n     * @throws BarException\n     */\n    public function bar(): void {";
    assert!(
        result.contains(expected_fragment),
        "docblock should be aligned with the method signature:\n{}",
        result
    );
}

// ── Standalone function ─────────────────────────────────────────────────────

#[test]
fn works_with_standalone_function() {
    let backend = create_test_backend();
    let uri = "file:///test.php";
    let content = r#"<?php
/**
 * Do things.
 */
function doThings(): void {
    throw new \App\Exceptions\ThingException();
}
"#;
    backend.update_ast(uri, content);

    inject_phpstan_diag(
        &backend,
        uri,
        5,
        "Function doThings() throws checked exception App\\Exceptions\\ThingException but it's missing from the PHPDoc @throws tag.",
        "missingType.checkedException",
    );

    let actions = get_code_actions_at(&backend, uri, content, 5, 10);
    let action = find_add_throws_action(&actions).expect("should offer action");

    let resolved = resolve_action(&backend, uri, content, action);
    let edits = extract_edits(&resolved);
    let result = apply_edits(content, &edits);

    assert!(
        result.contains("@throws ThingException"),
        "should insert @throws tag:\n{}",
        result
    );
}

// ── Does not duplicate existing @throws ─────────────────────────────────────

#[test]
fn no_action_when_already_documented() {
    let backend = create_test_backend();
    let uri = "file:///test.php";
    let content = r#"<?php
namespace App\Controllers;

use App\Exceptions\BarException;

class FooController {
    /**
     * @throws BarException
     */
    public function bar(): void {
        throw new BarException();
    }
}
"#;
    backend.update_ast(uri, content);

    inject_phpstan_diag(
        &backend,
        uri,
        10,
        "Method App\\Controllers\\FooController::bar() throws checked exception App\\Exceptions\\BarException but it's missing from the PHPDoc @throws tag.",
        "missingType.checkedException",
    );

    let actions = get_code_actions_at(&backend, uri, content, 10, 10);
    let action = find_add_throws_action(&actions);
    assert!(
        action.is_none(),
        "should NOT offer action when @throws already documented"
    );
}

// ── Ignores non-matching diagnostics ────────────────────────────────────────

#[test]
fn ignores_other_phpstan_identifiers() {
    let backend = create_test_backend();
    let uri = "file:///test.php";
    let content = r#"<?php
class Foo {
    /**
     * Summary.
     */
    public function bar(): void {
        $x = 1;
    }
}
"#;
    backend.update_ast(uri, content);

    inject_phpstan_diag(
        &backend,
        uri,
        6,
        "Some other PHPStan error.",
        "return.unusedType",
    );

    let actions = get_code_actions_at(&backend, uri, content, 6, 10);
    let action = find_add_throws_action(&actions);
    assert!(
        action.is_none(),
        "should NOT offer action for non-checkedException identifiers"
    );
}

// ── Single-line docblock ────────────────────────────────────────────────────

#[test]
fn expands_single_line_docblock() {
    let backend = create_test_backend();
    let uri = "file:///test.php";
    let content = r#"<?php
namespace App\Controllers;

use App\Exceptions\BarException;

class FooController {
    /** Do something. */
    public function bar(): void {
        throw new BarException();
    }
}
"#;
    backend.update_ast(uri, content);

    inject_phpstan_diag(
        &backend,
        uri,
        8,
        "Method App\\Controllers\\FooController::bar() throws checked exception App\\Exceptions\\BarException but it's missing from the PHPDoc @throws tag.",
        "missingType.checkedException",
    );

    let actions = get_code_actions_at(&backend, uri, content, 8, 10);
    let action = find_add_throws_action(&actions).expect("should offer action");

    let resolved = resolve_action(&backend, uri, content, action);
    let edits = extract_edits(&resolved);
    let result = apply_edits(content, &edits);

    assert!(
        result.contains("@throws BarException"),
        "should insert @throws tag:\n{}",
        result
    );
    assert!(
        result.contains("Do something."),
        "should preserve summary:\n{}",
        result
    );
}

// ── Docblock with existing @throws for different exception ──────────────────

#[test]
fn appends_second_throws_tag() {
    let backend = create_test_backend();
    let uri = "file:///test.php";
    let content = r#"<?php
namespace App\Controllers;

use App\Exceptions\FooException;
use App\Exceptions\BarException;

class FooController {
    /**
     * Do something.
     *
     * @throws FooException
     */
    public function bar(): void {
        throw new FooException();
        throw new BarException();
    }
}
"#;
    backend.update_ast(uri, content);

    inject_phpstan_diag(
        &backend,
        uri,
        14,
        "Method App\\Controllers\\FooController::bar() throws checked exception App\\Exceptions\\BarException but it's missing from the PHPDoc @throws tag.",
        "missingType.checkedException",
    );

    let actions = get_code_actions_at(&backend, uri, content, 14, 10);
    let action = find_add_throws_action(&actions).expect("should offer action");

    let resolved = resolve_action(&backend, uri, content, action);
    let edits = extract_edits(&resolved);
    let result = apply_edits(content, &edits);

    assert!(
        result.contains("@throws FooException"),
        "should keep existing @throws:\n{}",
        result
    );
    assert!(
        result.contains("@throws BarException"),
        "should add new @throws:\n{}",
        result
    );
}

// ── Sibling diagnostic clearing ─────────────────────────────────────────────

/// When a method throws the same exception on multiple lines, PHPStan
/// reports a separate `missingType.checkedException` for each `throw`.
/// Adding `@throws` once fixes all of them, so resolving the action on
/// any one diagnostic must clear every sibling diagnostic for the same
/// exception within that method body.
#[test]
fn clears_sibling_checked_exception_diags_in_same_method() {
    let backend = create_test_backend();
    let uri = "file:///test.php";
    let content = r#"<?php
namespace App\Helpers;

use RuntimeException;

class BadgeHelper {
    /**
     * Get badge for stock status.
     */
    public function getBadgeForStockStatus(): string {
        if (true) {
            throw new RuntimeException('first');
        }
        throw new RuntimeException('second');
    }
}
"#;
    backend.update_ast(uri, content);

    // Inject two diagnostics for the same exception, different lines.
    let msg = "Method App\\Helpers\\BadgeHelper::getBadgeForStockStatus() throws checked exception RuntimeException but it's missing from the PHPDoc @throws tag.";
    inject_phpstan_diag(&backend, uri, 11, msg, "missingType.checkedException");
    inject_phpstan_diag(&backend, uri, 13, msg, "missingType.checkedException");

    // Trigger the action on the first diagnostic (line 11).
    let actions = get_code_actions_at(&backend, uri, content, 11, 10);
    let action = find_add_throws_action(&actions).expect("should offer Add @throws action");

    // Resolve — this should clear BOTH diagnostics from the cache.
    let resolved = resolve_action(&backend, uri, content, action);
    let edits = extract_edits(&resolved);
    let result = apply_edits(content, &edits);

    assert!(
        result.contains("@throws RuntimeException"),
        "should insert @throws tag:\n{}",
        result
    );

    // Both diagnostics must have been removed from the PHPStan cache.
    let remaining: Vec<_> = {
        let cache = backend.phpstan_last_diags().lock();
        cache
            .get(uri)
            .cloned()
            .unwrap_or_default()
            .into_iter()
            .filter(|d| {
                d.code
                    == Some(NumberOrString::String(
                        "missingType.checkedException".into(),
                    ))
            })
            .collect()
    };
    assert!(
        remaining.is_empty(),
        "both sibling diagnostics should be cleared, but {} remain: {:?}",
        remaining.len(),
        remaining
            .iter()
            .map(|d| d.range.start.line)
            .collect::<Vec<_>>()
    );
}

/// Sibling clearing must NOT clear diagnostics for a *different*
/// exception class, even if they are in the same method.
#[test]
fn does_not_clear_sibling_diags_for_different_exception() {
    let backend = create_test_backend();
    let uri = "file:///test.php";
    let content = r#"<?php
namespace App\Helpers;

use RuntimeException;
use InvalidArgumentException;

class BadgeHelper {
    /**
     * Get badge.
     */
    public function getBadge(): string {
        if (true) {
            throw new RuntimeException('boom');
        }
        throw new InvalidArgumentException('bad');
    }
}
"#;
    backend.update_ast(uri, content);

    inject_phpstan_diag(
        &backend,
        uri,
        12,
        "Method App\\Helpers\\BadgeHelper::getBadge() throws checked exception RuntimeException but it's missing from the PHPDoc @throws tag.",
        "missingType.checkedException",
    );
    inject_phpstan_diag(
        &backend,
        uri,
        14,
        "Method App\\Helpers\\BadgeHelper::getBadge() throws checked exception InvalidArgumentException but it's missing from the PHPDoc @throws tag.",
        "missingType.checkedException",
    );

    // Resolve only the RuntimeException action.
    let actions = get_code_actions_at(&backend, uri, content, 12, 10);
    let action = find_add_throws_action(&actions).expect("should offer Add @throws action");
    let _resolved = resolve_action(&backend, uri, content, action);

    // The InvalidArgumentException diagnostic must still be in the cache.
    let remaining: Vec<_> = {
        let cache = backend.phpstan_last_diags().lock();
        cache
            .get(uri)
            .cloned()
            .unwrap_or_default()
            .into_iter()
            .filter(|d| {
                d.code
                    == Some(NumberOrString::String(
                        "missingType.checkedException".into(),
                    ))
            })
            .collect()
    };
    assert_eq!(
        remaining.len(),
        1,
        "only the InvalidArgumentException diagnostic should remain"
    );
    assert!(
        remaining[0].message.contains("InvalidArgumentException"),
        "remaining diagnostic should be for InvalidArgumentException"
    );
}

/// Sibling clearing must NOT cross method boundaries: a diagnostic in
/// a different method for the same exception must not be cleared.
#[test]
fn does_not_clear_diags_in_different_method() {
    let backend = create_test_backend();
    let uri = "file:///test.php";
    let content = r#"<?php
namespace App\Helpers;

use RuntimeException;

class BadgeHelper {
    /**
     * First method.
     */
    public function first(): void {
        throw new RuntimeException('a');
    }

    /**
     * Second method.
     */
    public function second(): void {
        throw new RuntimeException('b');
    }
}
"#;
    backend.update_ast(uri, content);

    let msg_first = "Method App\\Helpers\\BadgeHelper::first() throws checked exception RuntimeException but it's missing from the PHPDoc @throws tag.";
    let msg_second = "Method App\\Helpers\\BadgeHelper::second() throws checked exception RuntimeException but it's missing from the PHPDoc @throws tag.";
    inject_phpstan_diag(&backend, uri, 10, msg_first, "missingType.checkedException");
    inject_phpstan_diag(
        &backend,
        uri,
        17,
        msg_second,
        "missingType.checkedException",
    );

    // Resolve the action for first() only.
    let actions = get_code_actions_at(&backend, uri, content, 10, 10);
    let action = find_add_throws_action(&actions).expect("should offer Add @throws action");
    let _resolved = resolve_action(&backend, uri, content, action);

    // The diagnostic in second() must still be in the cache.
    let remaining: Vec<_> = {
        let cache = backend.phpstan_last_diags().lock();
        cache
            .get(uri)
            .cloned()
            .unwrap_or_default()
            .into_iter()
            .filter(|d| {
                d.code
                    == Some(NumberOrString::String(
                        "missingType.checkedException".into(),
                    ))
            })
            .collect()
    };
    assert_eq!(
        remaining.len(),
        1,
        "the diagnostic in second() should remain"
    );
    assert_eq!(
        remaining[0].range.start.line, 17,
        "remaining diagnostic should be on line 17 (second method)"
    );
}