mcordingley/HashBin

View on GitHub
src/Hashers/IntegerInterpreter.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace mcordingley\HashBin\Hashers;

interface IntegerInterpreter
{
    /**
     * @param string $string Raw binary string
     * @return int
     */
    public function interpret(string $string): int;
}