Skip to content

Instantly share code, notes, and snippets.

@nadar
Created November 4, 2019 10:08
Show Gist options
  • Save nadar/aa3b09109cb0eb254126c0be26b0a33a to your computer and use it in GitHub Desktop.
Save nadar/aa3b09109cb0eb254126c0be26b0a33a to your computer and use it in GitHub Desktop.
assumption.php
<?php
class MyAction extends BaseAction
{
public function route(): string
{
return '/call-this-server';
}
public function run(array $params): \Heartbeat\RPA\ActionResponse
{
return Client()->get('https://github.com').then(function($message), {
return new JsonResponse(200, $message);
});
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment