for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Billow\Actions;
/**
* @author Matt Frost<[email protected]>
* @package Billow
* @subpackage Actions
* @license http://opensource.org/licenses/MIT MIT
*/
class EnablePrivateNetworking extends Action
{
* Action parameter
*
* @const ACTION
const ACTION = 'enable_private_networking';
* Action HTTP Method
* @const method
const METHOD = 'POST';
* Return the body of the request
* @return string json representation of the body
public function getBody()
return json_encode([
'type' => self::ACTION
]);
}