Completed
Push — master ( ebbcfb...257df0 )
by Pavel
02:50
created
src/Column/Column.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -107,7 +107,7 @@  discard block
 block discarded – undo
107 107
 	/**
108 108
 	 * Render row item into template
109 109
 	 * @param  Row   $row
110
-	 * @return mixed
110
+	 * @return string
111 111
 	 */
112 112
 	public function render(Row $row)
113 113
 	{
@@ -490,7 +490,7 @@  discard block
 block discarded – undo
490 490
 
491 491
 
492 492
 	/**
493
-	 * @return bool
493
+	 * @return boolean|null
494 494
 	 */
495 495
 	public function hasSortNext()
496 496
 	{
Please login to merge, or discard this patch.
src/DataGrid.php 1 patch
Doc Comments   +3 added lines, -4 removed lines patch added patch discarded remove patch
@@ -1428,7 +1428,6 @@  discard block
 block discarded – undo
1428 1428
 
1429 1429
 	/**
1430 1430
 	 * If we want to sent some initial filter
1431
-	 * @param array $filter
1432 1431
 	 * @param bool  $use_on_reset
1433 1432
 	 * @return static
1434 1433
 	 */
@@ -2499,7 +2498,7 @@  discard block
 block discarded – undo
2499 2498
 
2500 2499
 	/**
2501 2500
 	 * Set options of select "items_per_page"
2502
-	 * @param array $items_per_page_list
2501
+	 * @param integer[] $items_per_page_list
2503 2502
 	 * @return static
2504 2503
 	 */
2505 2504
 	public function setItemsPerPageList(array $items_per_page_list, $include_all = TRUE)
@@ -2818,7 +2817,7 @@  discard block
 block discarded – undo
2818 2817
 
2819 2818
 	/**
2820 2819
 	 * Get items detail parameters
2821
-	 * @return array
2820
+	 * @return Column\ItemDetail
2822 2821
 	 */
2823 2822
 	public function getItemsDetail()
2824 2823
 	{
@@ -2892,7 +2891,7 @@  discard block
 block discarded – undo
2892 2891
 
2893 2892
 
2894 2893
 	/**
2895
-	 * @return Nette\Forms\Container|NULL
2894
+	 * @return Utils\ItemDetailForm|null
2896 2895
 	 */
2897 2896
 	public function getItemDetailForm()
2898 2897
 	{
Please login to merge, or discard this patch.