diff options
| author | Stephan Seitz <stephan.seitz@fau.de> | 2022-02-12 23:12:07 +0100 |
|---|---|---|
| committer | Stephan Seitz <stephan.seitz@fau.de> | 2022-02-13 12:19:54 +0100 |
| commit | 3fbf280e349cfbac26fd6069f40c4d727ccd3c88 (patch) | |
| tree | c253bc0e732bef6c24fd67571a1bc6d920bc767c /tests/indent/php | |
| parent | 503c99d7666f17156dfff1348f4fb503caf4147a (diff) | |
indents(php): don't use aligned_indent for php
Fixes #2497
Diffstat (limited to 'tests/indent/php')
| -rw-r--r-- | tests/indent/php/issue-2497.php | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/tests/indent/php/issue-2497.php b/tests/indent/php/issue-2497.php new file mode 100644 index 00000000..2da7d3a7 --- /dev/null +++ b/tests/indent/php/issue-2497.php @@ -0,0 +1,14 @@ +<?php + +use Illuminate\Support\Facades\Route; + +Route::get('/', function () { + return view('welcome'); +}); + +Route::get( + '/', + 1, + aaaaaaaaaaaaaaaaaaaaaaaaa, + 2 +); |
