You are here

Posts.php in HTTP Client Manager 8.2

File

modules/http_client_manager_example/src/api/Commands/Posts.php
View source
<?php

namespace Drupal\http_client_manager_example\api\Commands;


/**
 * Class Posts.
 *
 * Contains all the Guzzle Commands defined inside the "posts" Guzzle Service
 * Description.
 *
 * @package Drupal\http_client_manager_example\api\Commands
 */
final class Posts {
  const CREATE_POST = 'CreatePost';
  const FIND_POSTS = 'FindPosts';
  const FIND_POST = 'FindPost';
  const FIND_COMMENTS = 'FindComments';

}

Classes

Namesort descending Description
Posts Class Posts.