Files
luos/workflow/engine/src/Services/Api/ProcessMaker/Test3.php
2014-01-09 12:26:32 -04:00

23 lines
314 B
PHP

<?php
namespace Services\Api\ProcessMaker;
use \ProcessMaker\Services\Api;
use \Luracast\Restler\RestException;
class Test3 extends Api
{
function hello3()
{
return 'Hello #3';
}
/**
* @status 201
*/
function post2()
{
return array('success' => true);
}
}