/**
  * AmazonInventoryList fetches a list of inventory supplies Amazon.
  * 
  * The parameters are passed to the parent constructor, which are
  * in turn passed to the AmazonCore constructor. See it for more information
  * on these parameters and common methods.
  * @param string $s [optional] <p>Name for the store you want to use.
  * This parameter is optional if only one store is defined in the config file.</p>
  * @param boolean $mock [optional] <p>This is a flag for enabling Mock Mode.
  * This defaults to <b>FALSE</b>.</p>
  * @param array|string $m [optional] <p>The files (or file) to use in Mock Mode.</p>
  * @param string $config [optional] <p>An alternate config file to set. Used for testing.</p>
  */
 public function __construct($s = null, $mock = false, $m = null, $config = null)
 {
     parent::__construct($s, $mock, $m, $config);
 }
예제 #2
0
 /**
  * AmazonInventoryList fetches a list of inventory supplies Amazon.
  *
  * The parameters are passed to the parent constructor, which are
  * in turn passed to the AmazonCore constructor. See it for more information
  * on these parameters and common methods.
  * @param string $s [optional] <p>Name for the store you want to use.
  * This parameter is optional if only one store is defined in the config file.</p>
  * @param boolean $mock [optional] <p>This is a flag for enabling Mock Mode.
  * This defaults to <b>FALSE</b>.</p>
  * @param array|string $m [optional] <p>The files (or file) to use in Mock Mode.</p>
  * @param string $config [optional] <p>An alternate config file to set. Used for testing.</p>
  */
 public function __construct($config, $mock = false, $m = null)
 {
     parent::__construct($config, $mock, $m);
 }