for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace PlugHttp\Globals;
use PlugHttp\Body\Handler;
class Post implements Handler
{
private $post;
public function __construct()
$this->post = $_POST;
}
public function getBody()
return $this->post;
public function handle($server)
return $this->getBody();