partkeepr

fork of partkeepr
git clone https://git.e1e0.net/partkeepr.git
Log | Files | Refs | Submodules | README | LICENSE

services.xml (1700B)


      1 <?xml version="1.0" ?>
      2 
      3 <container xmlns="http://symfony.com/schema/dic/services"
      4            xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
      5            xsi:schemaLocation="http://symfony.com/schema/dic/services http://symfony.com/schema/dic/services/services-1.0.xsd">
      6 
      7     <services>
      8         <service id="doctrine_reflection_service" class="PartKeepr\DoctrineReflectionBundle\Services\ReflectionService">
      9             <argument type="service" id="doctrine"/>
     10             <argument type="service" id="templating"/>
     11             <argument type="service" id="annotation_reader"/>
     12         </service>
     13 
     14         <service id="doctrine_filter_service" class="PartKeepr\DoctrineReflectionBundle\Services\FilterService">
     15             <argument type="service" id="doctrine"/>
     16         </service>
     17 
     18         <service id="doctrine_reflection_service.search_filter"
     19                  class="PartKeepr\DoctrineReflectionBundle\Filter\AdvancedSearchFilter" public="false">
     20             <argument type="service" id="doctrine"/>
     21             <argument type="service" id="api.iri_converter"/>
     22             <argument type="service" id="property_accessor"/>
     23             <argument type="service" id="request_stack"/>
     24             <argument type="service" id="doctrine_filter_service"/>
     25         </service>
     26 
     27         <service id="doctrine_reflection_deletion_service" class="PartKeepr\DoctrineReflectionBundle\Services\DeletionService">
     28             <argument type="service" id="doctrine.orm.default_entity_manager"/>
     29         </service>
     30 
     31         <service id="partkeepr.exceptionwrapper"
     32                  class="PartKeepr\DoctrineReflectionBundle\Exception\ExceptionWrapperHandler">
     33         </service>
     34 
     35     </services>
     36 </container>