Completed
Pull Request — master (#28)
by
unknown
01:08
created
DependencyInjection/EoHoneypotExtension.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -16,7 +16,6 @@
 block discarded – undo
16 16
 use Symfony\Component\HttpKernel\DependencyInjection\Extension;
17 17
 use Symfony\Component\DependencyInjection\Loader;
18 18
 use Symfony\Component\DependencyInjection\Reference;
19
-use Symfony\Component\DependencyInjection\Definition;
20 19
 
21 20
 /**
22 21
  * This is the class that loads and manages your bundle configuration
Please login to merge, or discard this patch.
Form/Type/HoneypotType.php 2 patches
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,6 @@
 block discarded – undo
13 13
 
14 14
 use Eo\HoneypotBundle\Events;
15 15
 use Eo\HoneypotBundle\Event\BirdInCageEvent;
16
-use Doctrine\Common\Persistence\ObjectManager;
17 16
 use Eo\HoneypotBundle\Manager\HoneypotManager;
18 17
 use Symfony\Component\EventDispatcher\EventDispatcherInterface;
19 18
 use Symfony\Component\Form\FormError;
Please login to merge, or discard this patch.
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -44,9 +44,9 @@
 block discarded – undo
44 44
     /**
45 45
      * Class constructor
46 46
      *
47
-     * @param Symfony\Component\HttpFoundation\RequestStack $requestStack
48
-     * @param Eo\HoneypotBundle\Manager\HoneypotManager $honeypotManager
49
-     * @param Symfony\Component\EventDispatcher\EventDispatcherInterface $eventDispatcher
47
+     * @param RequestStack $requestStack
48
+     * @param HoneypotManager $honeypotManager
49
+     * @param EventDispatcherInterface $eventDispatcher
50 50
      */
51 51
     public function __construct(RequestStack $requestStack, HoneypotManager $honeypotManager, EventDispatcherInterface $eventDispatcher)
52 52
     {
Please login to merge, or discard this patch.
Manager/HoneypotManager.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -111,7 +111,7 @@
 block discarded – undo
111 111
     /**
112 112
      * Get object manager
113 113
      *
114
-     * @return ObjectRepository
114
+     * @return \Doctrine\Common\Persistence\ObjectRepository
115 115
      */
116 116
     public function getRepository()
117 117
     {
Please login to merge, or discard this patch.
Model/HoneypotPrey.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -78,7 +78,7 @@
 block discarded – undo
78 78
     /**
79 79
      * Set createdAt
80 80
      *
81
-     * @param  DateTime $createdAt
81
+     * @param  \DateTime $createdAt
82 82
      * @return self
83 83
      */
84 84
     public function setCreatedAt(\DateTime $createdAt)
Please login to merge, or discard this patch.