maen-bn/openamauth

View on GitHub
src/Contracts/Strategies/Format.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace Maenbn\OpenAmAuth\Contracts\Strategies;

interface Format
{
    /**
     * @param mixed $toFormat
     * @return mixed
     * @throws \Exception
     */
    public function format($toFormat);
}