1<?php
2
3class Foo extends Bar {
4  public static function doSomething() {
5    return PARENT::doSomething();
6  }
7
8  public static function doSomethingElse() {
9    return parent::doSomethingElse();
10  }
11}
12~~~~~~~~~~
13warning:5:12:XHP40:Keyword Conventions
14~~~~~~~~~~
15<?php
16
17class Foo extends Bar {
18  public static function doSomething() {
19    return parent::doSomething();
20  }
21
22  public static function doSomethingElse() {
23    return parent::doSomethingElse();
24  }
25}
26