Completed
Branch master (dee123)
by dima
03:02 queued 22s
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/core/src/Models/User/Base/User.php 1 patch
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -316,7 +316,7 @@  discard block
 block discarded – undo
316 316
      *
317 317
      * @param  string  $msg
318 318
      * @param  int     $priority One of the Propel::LOG_* logging levels
319
-     * @return boolean
319
+     * @return boolean|null
320 320
      */
321 321
     protected function log($msg, $priority = Propel::LOG_INFO)
322 322
     {
@@ -1159,7 +1159,7 @@  discard block
 block discarded – undo
1159 1159
      * TableMap::TYPE_COLNAME, TableMap::TYPE_FIELDNAME, TableMap::TYPE_NUM.
1160 1160
      * The default key type is the column's TableMap::TYPE_PHPNAME.
1161 1161
      *
1162
-     * @param mixed $parser A AbstractParser instance,
1162
+     * @param string $parser A AbstractParser instance,
1163 1163
      *                       or a format name ('XML', 'YAML', 'JSON', 'CSV')
1164 1164
      * @param string $data The source data to import from
1165 1165
      * @param string $keyType The type of keys the array uses.
@@ -1390,7 +1390,7 @@  discard block
 block discarded – undo
1390 1390
      * Validates the object and all objects related to this table.
1391 1391
      *
1392 1392
      * @see        getValidationFailures()
1393
-     * @param      object $validator A Validator class instance
1393
+     * @param      ValidatorInterface $validator A Validator class instance
1394 1394
      * @return     boolean Whether all objects pass validation.
1395 1395
      */
1396 1396
     public function validate(ValidatorInterface $validator = null)
@@ -1437,7 +1437,7 @@  discard block
 block discarded – undo
1437 1437
      * Gets any ConstraintViolation objects that resulted from last call to validate().
1438 1438
      *
1439 1439
      *
1440
-     * @return     object ConstraintViolationList
1440
+     * @return     ConstraintViolationList ConstraintViolationList
1441 1441
      * @see        validate()
1442 1442
      */
1443 1443
     public function getValidationFailures()
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/ModuleController.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -8,6 +8,9 @@
 block discarded – undo
8 8
  */
9 9
 abstract class ModuleController extends BaseController implements \Frameworkless\ModuleInterface{
10 10
 
11
+    /**
12
+     * @param string $view
13
+     */
11 14
     protected function render($view, array $data = array()){
12 15
 
13 16
 	$ref = new \ReflectionClass($this);
Please login to merge, or discard this patch.