for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace LibraryCatalog\Service\Http;
class RawInputPhp implements RawInputInterface
{
/**
* @return string
*/
public function get(): string
return (string)file_get_contents('php://input');
}