You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
class TennisProcedure extends Procedure
{
/**
* The name of the procedure that will be
* displayed and taken into account in the search
*
* @var string
*/
public static string $name = 'tennis';
/**
* Execute the procedure.
*
* @param Request $request
*
* @return array|string|integer
*/
public function ping(Request $request)
{
return "pong";
}
}