for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Mathielen\ImportEngine\Mapping;
class Mapping
{
public $from;
public $to;
public $converter;
public function __construct($from, $to = null, $converter = null)
$this->from = $from;
$this->to = $to;
$this->converter = $converter;
}