44 lines
836 B
PHP
44 lines
836 B
PHP
<?php
|
|
/**
|
|
*/
|
|
|
|
namespace php\_Boot;
|
|
|
|
use \php\Boot;
|
|
|
|
/**
|
|
* Anonymous objects implementation
|
|
*/
|
|
class HxAnon extends \StdClass {
|
|
/**
|
|
* @return void
|
|
*/
|
|
public function __construct () {
|
|
#/nix/store/ljakxdz94hcvn9b4k9y292dn5lhh20iy-haxe-4.2.5/lib/haxe/std/php/Boot.hx:950: lines 950-960
|
|
;
|
|
}
|
|
|
|
/**
|
|
* @param string $name
|
|
* @param array $args
|
|
*
|
|
* @return mixed
|
|
*/
|
|
public function __call ($name, $args) {
|
|
#/nix/store/ljakxdz94hcvn9b4k9y292dn5lhh20iy-haxe-4.2.5/lib/haxe/std/php/Boot.hx:958: characters 3-57
|
|
return ($this->$name)(...$args);
|
|
}
|
|
|
|
/**
|
|
* @param string $name
|
|
*
|
|
* @return mixed
|
|
*/
|
|
public function __get ($name) {
|
|
#/nix/store/ljakxdz94hcvn9b4k9y292dn5lhh20iy-haxe-4.2.5/lib/haxe/std/php/Boot.hx:953: characters 3-14
|
|
return null;
|
|
}
|
|
}
|
|
|
|
Boot::registerClass(HxAnon::class, 'php._Boot.HxAnon');
|