Completed
Push — master ( 318aba...6d9bfe )
by Guillaume
02:18
created
var/SymfonyRequirements.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -223,7 +223,7 @@  discard block
 block discarded – undo
223 223
      * Adds a mandatory requirement in form of a php.ini configuration.
224 224
      *
225 225
      * @param string        $cfgName           The configuration name used for ini_get()
226
-     * @param bool|callback $evaluation        Either a boolean indicating whether the configuration should evaluate to true or false,
226
+     * @param boolean|string $evaluation        Either a boolean indicating whether the configuration should evaluate to true or false,
227 227
      *                                         or a callback function receiving the configuration value as parameter to determine the fulfillment of the requirement
228 228
      * @param bool          $approveCfgAbsence If true the Requirement will be fulfilled even if the configuration option does not exist, i.e. ini_get() returns false.
229 229
      *                                         This is helpful for abandoned configs in later PHP versions or configs of an optional extension, like Suhosin.
@@ -241,7 +241,7 @@  discard block
 block discarded – undo
241 241
      * Adds an optional recommendation in form of a php.ini configuration.
242 242
      *
243 243
      * @param string        $cfgName           The configuration name used for ini_get()
244
-     * @param bool|callback $evaluation        Either a boolean indicating whether the configuration should evaluate to true or false,
244
+     * @param string|false $evaluation        Either a boolean indicating whether the configuration should evaluate to true or false,
245 245
      *                                         or a callback function receiving the configuration value as parameter to determine the fulfillment of the requirement
246 246
      * @param bool          $approveCfgAbsence If true the Requirement will be fulfilled even if the configuration option does not exist, i.e. ini_get() returns false.
247 247
      *                                         This is helpful for abandoned configs in later PHP versions or configs of an optional extension, like Suhosin.
Please login to merge, or discard this patch.
src/Starkerxp/CampagneBundle/Render/RenderManager.php 1 patch
Doc Comments   +8 added lines, -4 removed lines patch added patch discarded remove patch
@@ -48,6 +48,10 @@  discard block
 block discarded – undo
48 48
         return $content;
49 49
     }
50 50
 
51
+    /**
52
+     * @param string $api
53
+     * @param string $version
54
+     */
51 55
     public function getSupport($api, $version)
52 56
     {
53 57
         foreach ($this->renderService as $service) {
@@ -78,7 +82,7 @@  discard block
 block discarded – undo
78 82
     }
79 83
 
80 84
     /**
81
-     * @return mixed
85
+     * @return string
82 86
      */
83 87
     public function getApi()
84 88
     {
@@ -86,7 +90,7 @@  discard block
 block discarded – undo
86 90
     }
87 91
 
88 92
     /**
89
-     * @param mixed $api
93
+     * @param string $api
90 94
      *
91 95
      * @return RenderManager
92 96
      */
@@ -98,7 +102,7 @@  discard block
 block discarded – undo
98 102
     }
99 103
 
100 104
     /**
101
-     * @return mixed
105
+     * @return string
102 106
      */
103 107
     public function getVersion()
104 108
     {
@@ -106,7 +110,7 @@  discard block
 block discarded – undo
106 110
     }
107 111
 
108 112
     /**
109
-     * @param mixed $version
113
+     * @param string $version
110 114
      *
111 115
      * @return RenderManager
112 116
      */
Please login to merge, or discard this patch.