mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-02-03 12:50:03 +08:00
22 lines
370 B
Plaintext
22 lines
370 B
Plaintext
class FictionalBuiltinClass {
|
|
const IS_PUBLIC = 256;
|
|
// @var $name Foo
|
|
public $name;
|
|
// @var $_app Foo2
|
|
public static $_app = 3;
|
|
/**
|
|
* getName
|
|
*
|
|
* @return Closure
|
|
*/
|
|
public function getName(object $object | Closure){
|
|
}
|
|
/**
|
|
* export
|
|
*
|
|
* @return string
|
|
*/
|
|
public static function export(mixed $class, string $name [, bool $return] | string){
|
|
}
|
|
}
|