Skip to content
Snippets Groups Projects
Select Git revision
  • 8740c887405a51a70c6f79ccbb0d5104e61908a0
  • main default protected
  • v0.2.1
  • v0.2.0
  • v0.1.2
  • v0.1.0
  • v0.1.1
7 results

PlaceProviderInterface.php

  • PlaceProviderInterface.php 256 B
    <?php
    
    declare(strict_types=1);
    
    namespace DBP\API\StarterBundle\Service;
    
    use DBP\API\StarterBundle\Entity\Place;
    
    interface PlaceProviderInterface
    {
        public function getPlaceById(string $identifier): ?Place;
    
        public function getPlaces(): array;
    }