
­­­­­­­­­­­­­­­­­­
<!DOCTYPE html>
<html>
<?php

namespace WPML\INSTALLER\FP\Functor;


trait Functor {
	/** @var mixed */
	protected $value;

	/**
	 * @param mixed $value
	 */
	public function __construct( $value ) {
		$this->value = $value;
	}

	/**
	 * @return mixed
	 */
	public function get() {
		return $this->value;
	}

	/**
	 * @param callable $callback
	 *
	 * @return \WPML\INSTALLER\FP\Either
	 */
	abstract public function map( callable $callback );

}
