for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Translation\Tokens;
/**
* A nice interface for providing tokens.
*/
class SampleTokenGenerator implements TokenProviderInterface
{
* Generate a fake token just as an example.
*
* @param string $source Source language
* @param string $target Target langiage
* @param string $text Text to translate
* @return string Token
public function generateToken(string $source, string $target, string $text) : string
return sprintf('%d.%d', rand(10000, 99999), rand(10000, 99999));
}