Skip to content

Commit

Permalink
Made actions public
Browse files Browse the repository at this point in the history
  • Loading branch information
core23 committed Nov 3, 2018
1 parent 56b11f0 commit 0bb0821
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/Resources/config/action.xml
Original file line number Diff line number Diff line change
@@ -1,23 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
<container xmlns="http://symfony.com/schema/dic/services" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://symfony.com/schema/dic/services http://symfony.com/schema/dic/services/services-1.0.xsd">
<services>
<service id="Core23\LastFmBundle\Action\StartAuthAction" class="Core23\LastFmBundle\Action\StartAuthAction">
<service id="Core23\LastFmBundle\Action\StartAuthAction" class="Core23\LastFmBundle\Action\StartAuthAction" public="true">
<argument type="service" id="core23_lastfm.service.auth"/>
<argument type="service" id="router"/>
</service>
<service id="Core23\LastFmBundle\Action\AuthErrorAction" class="Core23\LastFmBundle\Action\AuthErrorAction">
<service id="Core23\LastFmBundle\Action\AuthErrorAction" class="Core23\LastFmBundle\Action\AuthErrorAction" public="true">
<argument type="service" id="twig"/>
<argument type="service" id="router"/>
<argument type="service" id="core23_lastfm.session.manager"/>
<argument type="service" id="event_dispatcher"/>
</service>
<service id="Core23\LastFmBundle\Action\AuthSuccessAction" class="Core23\LastFmBundle\Action\AuthSuccessAction">
<service id="Core23\LastFmBundle\Action\AuthSuccessAction" class="Core23\LastFmBundle\Action\AuthSuccessAction" public="true">
<argument type="service" id="twig"/>
<argument type="service" id="router"/>
<argument type="service" id="core23_lastfm.session.manager"/>
<argument type="service" id="event_dispatcher"/>
</service>
<service id="Core23\LastFmBundle\Action\CheckAuthAction" class="Core23\LastFmBundle\Action\CheckAuthAction">
<service id="Core23\LastFmBundle\Action\CheckAuthAction" class="Core23\LastFmBundle\Action\CheckAuthAction" public="true">
<argument type="service" id="router"/>
<argument type="service" id="core23_lastfm.session.manager"/>
<argument type="service" id="core23_lastfm.service.auth"/>
Expand Down

0 comments on commit 0bb0821

Please sign in to comment.