1
0
Fork 0
mirror of https://we.phorge.it/source/arcanist.git synced 2024-10-25 01:58:49 +02:00
phorge-arcanist/src/lint/linter/__tests__/xhpast/use-of-this-in-static-method.lint-test

15 lines
216 B
Text
Raw Normal View History

2011-01-10 00:22:25 +01:00
<?php
final class A {
2011-01-10 00:22:25 +01:00
public function u() {
$this->f();
}
public static function v() {
$this->f();
}
}
~~~~~~~~~~
error:3:13 XHP19 Class-Filename Mismatch
2011-01-10 00:22:25 +01:00
error:8:5 Use of $this in a static method.