| 28 | }"#; |
| 29 | |
| 30 | async fn open_scaffolding(backend: &phpantom_lsp::Backend) { |
| 31 | for (uri, text) in [ |
| 32 | ("file:///app/Models/BlogPost.php", BLOG_POST_PHP), |
| 33 | ("file:///app/Models/BlogAuthor.php", BLOG_AUTHOR_PHP), |
| 34 | ("file:///vendor/Carbon.php", CARBON_PHP), |
| 35 | ] { |
| 36 | backend |
| 37 | .did_open(DidOpenTextDocumentParams { |
| 38 | text_document: TextDocumentItem { |
| 39 | uri: Url::parse(uri).unwrap(), |
| 40 | language_id: "php".to_string(), |
| 41 | version: 1, |
| 42 | text: text.to_string(), |
| 43 | }, |
| 44 | }) |
| 45 | .await; |
| 46 | } |
| 47 | } |
| 48 | |
| 49 | // ── The Blade template under test ─────────────────────────────────── |
| 50 | |