Completed
Push — l10n_master ( 6280e7...ef140b )
by Kunstmaan
88:44 queued 73:42
created
src/Kunstmaan/MultiDomainBundle/Twig/MultiDomainTwigExtension.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/NodeBundle/Twig/NodeTwigExtension.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/NodeSearchBundle/Twig/KunstmaanNodeSearchTwigExtension.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/PagePartBundle/Twig/Extension/PageTemplateTwigExtension.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@
 block discarded – undo
26 26
     }
27 27
 
28 28
     /**
29
-     * @return array
29
+     * @return \Twig_SimpleFunction[]
30 30
      */
31 31
     public function getFunctions()
32 32
     {
Please login to merge, or discard this patch.
src/Kunstmaan/SitemapBundle/Twig/SitemapTwigExtension.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/Entity/BaseUser.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -161,7 +161,7 @@
 block discarded – undo
161 161
     }
162 162
 
163 163
     /**
164
-     * @param mixed $googleId
164
+     * @param string $googleId
165 165
      */
166 166
     public function setGoogleId($googleId)
167 167
     {
Please login to merge, or discard this patch.
src/Kunstmaan/AdminBundle/Toolbar/BundleVersionDataCollector.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -5,7 +5,6 @@
 block discarded – undo
5 5
 use Doctrine\Common\Cache\Cache;
6 6
 use Kunstmaan\AdminBundle\Helper\Toolbar\AbstractDataCollector;
7 7
 use Kunstmaan\AdminBundle\Helper\VersionCheck\VersionChecker;
8
-use Monolog\Logger;
9 8
 use Symfony\Component\HttpFoundation\Request;
10 9
 use Symfony\Component\HttpFoundation\Response;
11 10
 
Please login to merge, or discard this patch.
src/Kunstmaan/AdminBundle/Twig/MultiDomainAdminTwigExtension.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@
 block discarded – undo
23 23
     /**
24 24
      * Get Twig functions defined in this extension.
25 25
      *
26
-     * @return array
26
+     * @return Twig_SimpleFunction[]
27 27
      */
28 28
     public function getFunctions()
29 29
     {
Please login to merge, or discard this patch.
src/Kunstmaan/AdminListBundle/AdminList/Field.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -103,6 +103,9 @@  discard block
 block discarded – undo
103 103
         return true;
104 104
     }
105 105
 
106
+    /**
107
+     * @param \stdClass $item
108
+     */
106 109
     public function getAliasObj($item)
107 110
     {
108 111
         $relation = $this->alias->getRelation();
@@ -115,6 +118,9 @@  discard block
 block discarded – undo
115 118
         return $item;
116 119
     }
117 120
 
121
+    /**
122
+     * @param string $column
123
+     */
118 124
     public function getColumnName($column)
119 125
     {
120 126
         $abbr = $this->alias->getAbbr().'.';
Please login to merge, or discard this patch.