bitverseio/identicon

View on GitHub
src/Bitverse/Identicon/Preprocessor/MD5Preprocessor.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace Bitverse\Identicon\Preprocessor;

class MD5Preprocessor implements PreprocessorInterface
{
    /**
     * {@inheritDoc}
     */
    public function process($string)
    {
        return md5($string);
    }
}