Completed
Push — master ( 76c71b...91372c )
by dima
05:24
created
packages/core/src/Models/Task/Base/Task.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -289,7 +289,7 @@  discard block
 block discarded – undo
289 289
      *
290 290
      * @param  string  $msg
291 291
      * @param  int     $priority One of the Propel::LOG_* logging levels
292
-     * @return boolean
292
+     * @return boolean|null
293 293
      */
294 294
     protected function log($msg, $priority = Propel::LOG_INFO)
295 295
     {
@@ -1132,7 +1132,7 @@  discard block
 block discarded – undo
1132 1132
      * TableMap::TYPE_COLNAME, TableMap::TYPE_FIELDNAME, TableMap::TYPE_NUM.
1133 1133
      * The default key type is the column's TableMap::TYPE_PHPNAME.
1134 1134
      *
1135
-     * @param mixed $parser A AbstractParser instance,
1135
+     * @param string $parser A AbstractParser instance,
1136 1136
      *                       or a format name ('XML', 'YAML', 'JSON', 'CSV')
1137 1137
      * @param string $data The source data to import from
1138 1138
      * @param string $keyType The type of keys the array uses.
Please login to merge, or discard this patch.
packages/selfprice/src/Models/Selfprice/Base/Selfprice.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -289,7 +289,7 @@  discard block
 block discarded – undo
289 289
      *
290 290
      * @param  string  $msg
291 291
      * @param  int     $priority One of the Propel::LOG_* logging levels
292
-     * @return boolean
292
+     * @return boolean|null
293 293
      */
294 294
     protected function log($msg, $priority = Propel::LOG_INFO)
295 295
     {
@@ -1132,7 +1132,7 @@  discard block
 block discarded – undo
1132 1132
      * TableMap::TYPE_COLNAME, TableMap::TYPE_FIELDNAME, TableMap::TYPE_NUM.
1133 1133
      * The default key type is the column's TableMap::TYPE_PHPNAME.
1134 1134
      *
1135
-     * @param mixed $parser A AbstractParser instance,
1135
+     * @param string $parser A AbstractParser instance,
1136 1136
      *                       or a format name ('XML', 'YAML', 'JSON', 'CSV')
1137 1137
      * @param string $data The source data to import from
1138 1138
      * @param string $keyType The type of keys the array uses.
Please login to merge, or discard this patch.
app/Controllers/IndexController.php 1 patch
Doc Comments   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -17,7 +17,6 @@  discard block
 block discarded – undo
17 17
 	/**
18 18
 	 * IndexController, constructed by container
19 19
 	 *
20
-	 * @param Twig_Environment $twig
21 20
 	 */
22 21
 	public function __construct( UserList $userListModule) {
23 22
 
@@ -28,7 +27,7 @@  discard block
 block discarded – undo
28 27
 	 * Return index page (/)
29 28
 	 *
30 29
 	 * @param array $args
31
-	 * @return Response
30
+	 * @return \Symfony\Component\HttpFoundation\Response
32 31
 	 */
33 32
 	public function get($args) {
34 33
 		return $this->render('pages/index.html.twig', [
Please login to merge, or discard this patch.
app/Controllers/ModuleController.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -9,6 +9,9 @@
 block discarded – undo
9 9
  */
10 10
 class ModuleController extends BaseController {
11 11
 	
12
+	/**
13
+	 * @param string $view
14
+	 */
12 15
 	protected function render($view, array $data = array()) {
13 16
 		
14 17
 		$ref = new \ReflectionClass($this);
Please login to merge, or discard this patch.
packages/core/src/Models/User/Base/User.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -323,7 +323,7 @@  discard block
 block discarded – undo
323 323
      *
324 324
      * @param  string  $msg
325 325
      * @param  int     $priority One of the Propel::LOG_* logging levels
326
-     * @return boolean
326
+     * @return boolean|null
327 327
      */
328 328
     protected function log($msg, $priority = Propel::LOG_INFO)
329 329
     {
@@ -1168,7 +1168,7 @@  discard block
 block discarded – undo
1168 1168
      * TableMap::TYPE_COLNAME, TableMap::TYPE_FIELDNAME, TableMap::TYPE_NUM.
1169 1169
      * The default key type is the column's TableMap::TYPE_PHPNAME.
1170 1170
      *
1171
-     * @param mixed $parser A AbstractParser instance,
1171
+     * @param string $parser A AbstractParser instance,
1172 1172
      *                       or a format name ('XML', 'YAML', 'JSON', 'CSV')
1173 1173
      * @param string $data The source data to import from
1174 1174
      * @param string $keyType The type of keys the array uses.
@@ -1438,7 +1438,7 @@  discard block
 block discarded – undo
1438 1438
      * Gets any ConstraintViolation objects that resulted from last call to validate().
1439 1439
      *
1440 1440
      *
1441
-     * @return     object ConstraintViolationList
1441
+     * @return     ConstraintViolationList ConstraintViolationList
1442 1442
      * @see        validate()
1443 1443
      */
1444 1444
     public function getValidationFailures()
Please login to merge, or discard this patch.