Skip to content

Latest commit

 

History

History
23 lines (17 loc) · 292 Bytes

README.md

File metadata and controls

23 lines (17 loc) · 292 Bytes

PageMill Action

Basic Example

use PageMill\Action\Action;

$action = new Action(
    "GET",
    "/",
    []
);

$action->set_domain(function($a, $b, array $c) {
    return ["Hi!"];
});

$action->set_responder(function(array $data) {
    echo $data[0];
});

$action->__invoke();