1
0
Fork 0
php-language-server/fixtures/diagnostics/errors/this_in_static_method.php

10 lines
88 B
PHP

<?php
class Foo
{
public static function bar()
{
return $this;
}
}