-
Notifications
You must be signed in to change notification settings - Fork 6
HotPatch
PeratX edited this page May 9, 2020
·
1 revision
{
"name": "Example",
"version": "1.0",
"api": 6,
"description": "Just an example",
"author": "iTX Technologies",
"main": "Example\\Main",
"website": "https://itxtech.org",
"dependency": [
{
"name": "Example/ExampleModule",
"version": "1.0.0",
"optional": true
}
],
"hotPatch": [
{
"class": "Example\\Main",
"method": "foo"
}
]
}
//only support this code style!
public function foo(string $arg0, int $arg1) : int{
echo $arg0;
return $arg1++;
}
> module hotpatch Example
HotPatch for Example took 0.001 s