• File: Applicative.php
  • Full Path: /home/lef/public_html/wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/utilities/FP/Traits/Applicative.php
  • File size: 221 bytes
  • MIME-type: text/x-php
  • Charset: utf-8
<?php

namespace OTGS\Installer\FP\Traits;

trait Applicative {
	/**
	 * @param mixed $otherContainer
	 *
	 * @return mixed
	 */
	public function ap( $otherContainer ) {
		return $otherContainer->map( $this->value );
	}
}