• File: Strategy.php
  • Full Path: /home/lef/public_html/wp-content/plugins/woocommerce-multilingual/classes/User/Store/Strategy.php
  • File size: 246 bytes
  • MIME-type: text/x-php
  • Charset: utf-8
<?php

namespace WCML\User\Store;


interface Strategy {

	/**
	 * @param string $key
	 *
	 * @return mixed
	 */
	public function get( $key );

	/**
	 * @param string   $key
	 * @param mixed    $value
	 */
	public function set( $key, $value );
}