1

Regenerate nvim config

This commit is contained in:
2024-06-02 03:29:20 +02:00
parent 75eea0c030
commit ef2e28883d
5576 changed files with 604886 additions and 503 deletions

View File

@ -0,0 +1,4 @@
<?php
enum Test: int
{

View File

@ -0,0 +1,12 @@
<?php
class example
{
public int $variable;
// indentation works correctly here
public function foo()
{
// indentation works correctly here
}
}

View File

@ -0,0 +1,6 @@
<?php
function()
{
$foo = 'bar';
// indentation with `o` is correct
}

View File

@ -0,0 +1,14 @@
<?php
use Illuminate\Support\Facades\Route;
Route::get('/', function () {
return view('welcome');
});
Route::get(
'/',
1,
aaaaaaaaaaaaaaaaaaaaaaaaa,
2
);

View File

@ -0,0 +1,6 @@
<?php
function test() {
$array = [
]
}

View File

@ -0,0 +1,66 @@
<?php
if (
) {
}
return (
);
return true
;
return fn () => (
);
return fn (
) => (
);
return function (
) {
};
return function () {
};
return match (
) {
};
return match () {
};
return new class
{
public function up()
{
}
public function down(
) {
}
};
$this->foo()
->bar(
)
->baz();
$this->get()
->each(function () {
})
->each(
function (
) {
},
);
return $this->get()
->each(function () {
})
->each(
function (
) {
},
);

View File

@ -0,0 +1,6 @@
<?php
Route::get(
'/',
1,
aaaaaaaaaaaaaaaaaaaaaaaaa,