for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace NerdsAndCompany\Schematic\DataTypes;
use NerdsAndCompany\Schematic\Interfaces\DataTypeInterface;
abstract class Base implements DataTypeInterface
{
/**
* {@inheritdoc}
*/
abstract public function getMapperHandle(): string;
abstract public function getRecords(): array;
public function afterImport()
}