Regenerate nvim config
This commit is contained in:
@ -0,0 +1,4 @@
|
||||
<?php
|
||||
|
||||
enum Test: int
|
||||
{
|
||||
@ -0,0 +1,12 @@
|
||||
<?php
|
||||
|
||||
class example
|
||||
{
|
||||
public int $variable;
|
||||
// indentation works correctly here
|
||||
|
||||
public function foo()
|
||||
{
|
||||
// indentation works correctly here
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,6 @@
|
||||
<?php
|
||||
function()
|
||||
{
|
||||
$foo = 'bar';
|
||||
// indentation with `o` is correct
|
||||
}
|
||||
@ -0,0 +1,14 @@
|
||||
<?php
|
||||
|
||||
use Illuminate\Support\Facades\Route;
|
||||
|
||||
Route::get('/', function () {
|
||||
return view('welcome');
|
||||
});
|
||||
|
||||
Route::get(
|
||||
'/',
|
||||
1,
|
||||
aaaaaaaaaaaaaaaaaaaaaaaaa,
|
||||
2
|
||||
);
|
||||
@ -0,0 +1,6 @@
|
||||
<?php
|
||||
|
||||
function test() {
|
||||
$array = [
|
||||
]
|
||||
}
|
||||
@ -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 (
|
||||
) {
|
||||
},
|
||||
);
|
||||
@ -0,0 +1,6 @@
|
||||
<?php
|
||||
|
||||
Route::get(
|
||||
'/',
|
||||
1,
|
||||
aaaaaaaaaaaaaaaaaaaaaaaaa,
|
||||
Reference in New Issue
Block a user