Skip to content

Commit

Permalink
Housekeeping
Browse files Browse the repository at this point in the history
  • Loading branch information
Mario Blazek committed Mar 10, 2017
1 parent a950223 commit 7bb9954
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
9 changes: 3 additions & 6 deletions bundle/Action/ActionInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,14 @@

namespace Netgen\Bundle\InformationCollectionBundle\Action;

use Netgen\Bundle\InformationCollectionBundle\Event\InformationCollected;
use Netgen\Bundle\InformationCollectionBundle\Exception\ActionFailedException;

interface ActionInterface
{
/**
* Act on InformationCollected event
*
* @param InformationCollected $event
* @param \Netgen\Bundle\InformationCollectionBundle\Event\InformationCollected $event
*
* @throws ActionFailedException
* @throws \Netgen\Bundle\InformationCollectionBundle\Exception\ActionFailedException
*/
public function act(InformationCollected $event);
public function act(\Netgen\Bundle\InformationCollectionBundle\Event\InformationCollected $event);
}
5 changes: 5 additions & 0 deletions bundle/Factory/FieldDataFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,11 @@ class FieldDataFactory
*/
protected $registry;

/**
* FieldDataFactory constructor.
*
* @param FieldHandlerRegistry $registry
*/
public function __construct(FieldHandlerRegistry $registry)
{
$this->registry = $registry;
Expand Down
6 changes: 2 additions & 4 deletions bundle/Mailer/MailerInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,14 @@

namespace Netgen\Bundle\InformationCollectionBundle\Mailer;

use Netgen\Bundle\InformationCollectionBundle\Value\EmailData;

interface MailerInterface
{
/**
* Creates and sends email message
*
* @param EmailData $data
* @param \Netgen\Bundle\InformationCollectionBundle\Value\EmailData $data
*
* @throws \Netgen\Bundle\InformationCollectionBundle\Exception\EmailNotSentException
*/
public function createAndSendMessage(EmailData $data);
public function createAndSendMessage(\Netgen\Bundle\InformationCollectionBundle\Value\EmailData $data);
}

0 comments on commit 7bb9954

Please sign in to comment.