CustomerRepository.php 263 B

12345678910111213141516
  1. <?php
  2. namespace Core\FacturisRepository;
  3. class CustomerRepository
  4. extends Repository
  5. implements \Core\App\Repository\Facturis\CustomerInterface
  6. {
  7. public function getAll()
  8. {
  9. $response = $this->getCustomers();
  10. return $response;
  11. }
  12. }