Overview

Namespaces

  • Crowdsdom
    • Client
      • Exceptions
    • Labor
      • Models
        • Base
  • PHP

Classes

  • API
  • Client
  • Overview
  • Namespace
  • Class
  • Tree
 1: <?php
 2: 
 3: namespace Crowdsdom\Client;
 4: 
 5: abstract class API
 6: {
 7:     /**
 8:      * @var Client
 9:      */
10:     protected $client;
11: 
12:     /**
13:      * API constructor.
14:      * @param Client $client
15:      */
16:     public function __construct(Client &$client)
17:     {
18:         $this->client = $client;
19:     }
20: 
21: }
API documentation generated by ApiGen 2.8.0