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

namespace WCML\User\Store;


class Noop {

	/**
	 * @param string $key
	 *
	 * @return null
	 */
	public function get( $key ) {
		return null;
	}

	public function set( $key, $value ) {
	}
}