for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Cerbero\JsonParser;
/**
* Parse the given source of JSON
*
* @param mixed $source
* @return JsonParser
*/
function parseJson(mixed $source): JsonParser
{
return new JsonParser($source);
}