Files
oficial/app/common/Define/Repository/MapperParser.php
2023-08-08 23:53:49 -04:00

11 lines
312 B
PHP

<?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;
}