Completed
Push — master ( 79cf12...989677 )
by Ruud
79:32 queued 65:03
created
src/Kunstmaan/AdminBundle/EventListener/AdminLocaleListener.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -81,7 +81,7 @@
 block discarded – undo
81 81
 
82 82
     /**
83 83
      * @param TokenInterface $token
84
-     * @param                $providerKey
84
+     * @param                string $providerKey
85 85
      *
86 86
      * @return bool
87 87
      */
Please login to merge, or discard this patch.
src/Kunstmaan/AdminBundle/Helper/AdminPanel/DefaultAdminPanelAdaptor.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@
 block discarded – undo
20 20
     }
21 21
 
22 22
     /**
23
-     * @return AdminPanelActionInterface[]
23
+     * @return AdminPanelAction[]
24 24
      */
25 25
     public function getAdminPanelActions()
26 26
     {
Please login to merge, or discard this patch.
src/Kunstmaan/AdminBundle/Helper/DomainConfiguration.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -56,7 +56,7 @@
 block discarded – undo
56 56
     }
57 57
 
58 58
     /**
59
-     * @return array
59
+     * @return string[]
60 60
      */
61 61
     public function getHosts()
62 62
     {
Please login to merge, or discard this patch.
src/Kunstmaan/AdminBundle/Helper/Menu/MenuAdaptorInterface.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -20,6 +20,7 @@
 block discarded – undo
20 20
      * @param MenuItem[]    &$children The current children
21 21
      * @param MenuItem|null $parent    The parent Menu item
22 22
      * @param Request       $request   The Request
23
+     * @return void
23 24
      */
24 25
     public function adaptChildren(MenuBuilder $menu, array &$children, MenuItem $parent = null, Request $request = null);
25 26
 }
Please login to merge, or discard this patch.
src/Kunstmaan/AdminBundle/Twig/AdminPermissionsTwigExtension.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.
src/Kunstmaan/AdminBundle/Twig/DateByLocaleExtension.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@
 block discarded – undo
12 12
     /**
13 13
      * Get Twig filters defined in this extension.
14 14
      *
15
-     * @return array
15
+     * @return \Twig_SimpleFilter[]
16 16
      */
17 17
     public function getFilters()
18 18
     {
Please login to merge, or discard this patch.
src/Kunstmaan/AdminBundle/Twig/FormToolsExtension.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@
 block discarded – undo
29 29
     /**
30 30
      * Get Twig functions defined in this extension.
31 31
      *
32
-     * @return array
32
+     * @return \Twig_SimpleFunction[]
33 33
      */
34 34
     public function getFunctions()
35 35
     {
Please login to merge, or discard this patch.
src/Kunstmaan/AdminBundle/Twig/SidebarTwigExtension.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@  discard block
 block discarded – undo
11 11
     /**
12 12
      * Get Twig functions defined in this extension.
13 13
      *
14
-     * @return array
14
+     * @return \Twig_SimpleFunction[]
15 15
      */
16 16
     public function getFunctions()
17 17
     {
@@ -23,7 +23,7 @@  discard block
 block discarded – undo
23 23
     /**
24 24
      * Return the admin menu MenuBuilder.
25 25
      *
26
-     * @return MenuBuilder
26
+     * @return boolean
27 27
      */
28 28
     public function hideSidebarInNodeEditAdmin($node)
29 29
     {
Please login to merge, or discard this patch.
AdminListBundle/AdminList/Configurator/ExportListConfiguratorInterface.php 1 patch
Doc Comments   +15 added lines patch added patch discarded remove patch
@@ -6,15 +6,30 @@
 block discarded – undo
6 6
 {
7 7
     public function getExportFields();
8 8
 
9
+    /**
10
+     * @param string $header
11
+     */
9 12
     public function addExportField($name, $header);
10 13
 
14
+    /**
15
+     * @return void
16
+     */
11 17
     public function buildIterator();
12 18
 
13 19
     public function getIterator();
14 20
 
21
+    /**
22
+     * @return void
23
+     */
15 24
     public function buildFilters();
16 25
 
26
+    /**
27
+     * @return void
28
+     */
17 29
     public function buildExportFields();
18 30
 
31
+    /**
32
+     * @param string $columnName
33
+     */
19 34
     public function getStringValue($item, $columnName);
20 35
 }
Please login to merge, or discard this patch.