squirrelphp/strings

View on GitHub
src/CondenseNumberInterface.php

Summary

Maintainability
A
0 mins
Test Coverage
F
0%
<?php

namespace Squirrel\Strings;

/**
 * Interface for condensing a number into a string to shorten it
 */
interface CondenseNumberInterface
{
    /**
     * Convert a number to a string
     */
    public function toString(int $number): string;

    /**
     * Convert a string to a number
     */
    public function toNumber(string $string): int;
}