ApaiIO\Operations\OperationInterface::getOperationParameter PHP Метод

getOperationParameter() публичный Метод

Returns all paramerters belonging to the current operation
public getOperationParameter ( ) : array
Результат array
    public function getOperationParameter();

Usage Example

Пример #1
0
 /**
  * Prepares the parameters for the request
  *
  * @param OperationInterface     $operation
  * @param ConfigurationInterface $configuration
  *
  * @return array
  */
 protected function prepareRequestParams(OperationInterface $operation, ConfigurationInterface $configuration)
 {
     $baseRequestParams = ['Service' => 'AWSECommerceService', 'AWSAccessKeyId' => $configuration->getAccessKey(), 'AssociateTag' => $configuration->getAssociateTag(), 'Operation' => $operation->getName(), 'Version' => '2013-08-01', 'Timestamp' => Util::getTimeStamp()];
     $operationParams = $operation->getOperationParameter();
     foreach ($operationParams as $key => $value) {
         if (true === is_array($value)) {
             $operationParams[$key] = implode(',', $value);
         }
     }
     $fullParameterList = array_merge($baseRequestParams, $operationParams);
     ksort($fullParameterList);
     return $fullParameterList;
 }
All Usage Examples Of ApaiIO\Operations\OperationInterface::getOperationParameter