for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Webmozart\Assert\StaticAnalysis\AssertString;
use Webmozart\Assert\Assert;
/**
* @psalm-param string|numeric $value
*/
function consume($value) : string
{
Assert::alpha($value);
return $value;
}