public function getBody()
 {
     if (self::$body === null) {
         self::$body = file_get_contents('php://input');
     }
     return self::$body;
 }