Sleimanx2\Plastic\Map\Blueprint::__construct PHP Method

__construct() public method

Blueprint constructor.
public __construct ( $type, Closure $callback = null, null $index = null )
$type
$callback Closure
$index null
    public function __construct($type, Closure $callback = null, $index = null)
    {
        $this->type = $type;
        if (!is_null($callback)) {
            $callback($this);
        }
        $this->index = $index;
    }