2013-12-02 16:53:08 -04:00
|
|
|
<?php
|
|
|
|
|
namespace Services\Api\ProcessMaker;
|
|
|
|
|
|
2013-12-03 17:10:18 -04:00
|
|
|
use \ProcessMaker\Services\Api;
|
2013-12-02 16:53:08 -04:00
|
|
|
use \Luracast\Restler\RestException;
|
|
|
|
|
|
|
|
|
|
class Test3 extends Api
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
function hello3()
|
|
|
|
|
{
|
|
|
|
|
return 'Hello #3';
|
|
|
|
|
}
|
2013-12-02 17:14:17 -04:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @status 201
|
|
|
|
|
*/
|
|
|
|
|
function post()
|
|
|
|
|
{
|
|
|
|
|
return array('success' => true);
|
|
|
|
|
}
|
2013-12-02 16:53:08 -04:00
|
|
|
}
|