soliantconsulting/SimpleFM

View on GitHub
src/Repository/Builder/Type/TypeInterface.php

Summary

Maintainability
A
0 mins
Test Coverage
F
0%
<?php
declare(strict_types = 1);

namespace Soliant\SimpleFM\Repository\Builder\Type;

interface TypeInterface
{
    public function fromFileMakerValue($value);

    public function toFileMakerValue($value);
}