Overview

Namespaces

  • PipelinerSales
    • ApiClient
      • Http
      • Query
      • Repository
        • Rest

Interfaces

  • RepositoryFactoryInterface
  • RepositoryInterface
  • Overview
  • Namespace
  • Class
  • Tree
 1: <?php
 2: /**
 3:  * This file is part of the Pipeliner API client library for PHP
 4:  *
 5:  * Copyright 2014 Pipelinersales, Inc. All Rights Reserved.
 6:  * For the full license information, see the attached LICENSE file.
 7:  */
 8: 
 9: namespace PipelinerSales\ApiClient\Repository;
10: 
11: interface RepositoryFactoryInterface
12: {
13:     /**
14:      * @param string $entitySingular
15:      * @param string $entityPlural
16:      * @return RepositoryInterface
17:      */
18:     public function createRepository($entitySingular, $entityPlural);
19: }
20: 
API documentation generated by ApiGen