Files
oficial/app/common/Define/Repository/MapperParser.php

11 lines
312 B
PHP
Raw Normal View History

<?php
namespace Incoviba\Common\Define\Repository;
interface MapperParser
{
public function register(string $column, ?Mapper $mapper = null): MapperParser;
public function getColumns(): array;
public function hasMapper(string $column): bool;
public function getMapper(string $column): Mapper;
}