for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Stadly\PasswordPolice\WordConverter;
use Traversable;
final class LowerCase implements WordConverterInterface
{
/**
* {@inheritDoc}
*/
public function convert(string $word): Traversable
yield mb_strtolower($word);
}