Completed
Push — 5.0 ( b6eeb1...ccbe01 )
by Jeroen
24:36 queued 13:22
created
Tests/DependencyInjection/KunstmaanTranslatorExtensionTest.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@
 block discarded – undo
34 34
     /**
35 35
      * Returns the Configuration to test
36 36
      *
37
-     * @return Configuration
37
+     * @return KunstmaanTranslatorExtension
38 38
      */
39 39
     protected function getExtension()
40 40
     {
Please login to merge, or discard this patch.
src/Kunstmaan/UtilitiesBundle/Twig/UtilitiesTwigExtension.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@
 block discarded – undo
24 24
     /**
25 25
      * Returns a list of filters.
26 26
      *
27
-     * @return array An array of filters
27
+     * @return \Twig_SimpleFilter[] An array of filters
28 28
      */
29 29
     public function getFilters()
30 30
     {
Please login to merge, or discard this patch.
VotingBundle/Tests/DependencyInjection/KunstmaanVotingExtensionTest.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -97,7 +97,7 @@
 block discarded – undo
97 97
     /**
98 98
      * Returns the Configuration to test
99 99
      *
100
-     * @return Configuration
100
+     * @return KunstmaanVotingExtension
101 101
      */
102 102
     protected function getExtension()
103 103
     {
Please login to merge, or discard this patch.
src/Kunstmaan/AdminBundle/Entity/Exception.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -156,7 +156,7 @@
 block discarded – undo
156 156
     }
157 157
 
158 158
     /**
159
-     * @param int $triggered
159
+     * @param integer $events
160 160
      */
161 161
     public function setEvents($events)
162 162
     {
Please login to merge, or discard this patch.
src/Kunstmaan/AdminBundle/Helper/Menu/SettingsMenuAdaptor.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -27,7 +27,6 @@
 block discarded – undo
27 27
     /**
28 28
      * Constructor
29 29
      *
30
-     * @param AuthorizationCheckerInterface $container
31 30
      */
32 31
     public function __construct(AuthorizationCheckerInterface $authorizationChecker, $isEnabledVersionChecker)
33 32
     {
Please login to merge, or discard this patch.
src/Kunstmaan/AdminBundle/Helper/Toolbar/AbstractDataCollector.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@
 block discarded – undo
28 28
     protected $adminRouteHelper;
29 29
 
30 30
     /**
31
-     * @return mixed
31
+     * @return string
32 32
      */
33 33
     public function getTemplate()
34 34
     {
Please login to merge, or discard this patch.
src/Kunstmaan/AdminBundle/Helper/Toolbar/DataCollectionInterface.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -9,8 +9,14 @@
 block discarded – undo
9 9
  */
10 10
 interface DataCollectionInterface
11 11
 {
12
+    /**
13
+     * @return AbstractDataCollector
14
+     */
12 15
     public function setTemplate($template);
13 16
 
17
+    /**
18
+     * @return string
19
+     */
14 20
     public function getTemplate();
15 21
 
16 22
     public function getAccessRoles();
Please login to merge, or discard this patch.
src/Kunstmaan/AdminBundle/Toolbar/ExceptionDataCollector.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@
 block discarded – undo
21 21
     }
22 22
 
23 23
     /**
24
-     * @return array
24
+     * @return string[]
25 25
      */
26 26
     public function getAccessRoles()
27 27
     {
Please login to merge, or discard this patch.
src/Kunstmaan/AdminBundle/Twig/AdminRouteHelperTwigExtension.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@
 block discarded – undo
17 17
     /**
18 18
      * Returns a list of functions to add to the existing list.
19 19
      *
20
-     * @return array An array of functions
20
+     * @return \Twig_SimpleFunction[] An array of functions
21 21
      */
22 22
     public function getFunctions()
23 23
     {
Please login to merge, or discard this patch.