On PHP 5.3, it is not possible to use `self` within a closure. As such, the patch suggested by `ArcanistClassNameLiteralXHPASTLinterRule` can be incorrect:
```lang=php
<?php
class SomeClass {
public static function someMethod() {
$closure = function() {
SomeClass::someOtherMethod();
};
$closure();
}
public static function someOtherMethod() {
echo __METHOD__."\n";
}
}
```
```lang=php, counterexample
<?php
class SomeClass {
public static function someMethod() {
$closure = function() {
self::someOtherMethod();
};
$closure();
}
public static function someOtherMethod() {
echo __METHOD__."\n";
}
}
```