Completed
Push — master ( 132ca9...4eddaf )
by Pavel
03:01
created
src/Column/Column.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -469,7 +469,7 @@
 block discarded – undo
469 469
 
470 470
 
471 471
 	/**
472
-	 * @return bool
472
+	 * @return boolean|null
473 473
 	 */
474 474
 	public function hasSortNext()
475 475
 	{
Please login to merge, or discard this patch.
src/DataGrid.php 1 patch
Doc Comments   +4 added lines, -5 removed lines patch added patch discarded remove patch
@@ -716,7 +716,7 @@  discard block
 block discarded – undo
716 716
 	/**
717 717
 	 * @param  array         $sort
718 718
 	 * @param  callable|NULL $sort_callback
719
-	 * @return void
719
+	 * @return Sorting
720 720
 	 */
721 721
 	protected function createSorting(array $sort, $sort_callback)
722 722
 	{
@@ -1309,7 +1309,6 @@  discard block
 block discarded – undo
1309 1309
 
1310 1310
 	/**
1311 1311
 	 * If we want to sent some initial filter
1312
-	 * @param array $filter
1313 1312
 	 * @param bool  $use_on_reset
1314 1313
 	 * @return static
1315 1314
 	 */
@@ -2285,7 +2284,7 @@  discard block
 block discarded – undo
2285 2284
 
2286 2285
 	/**
2287 2286
 	 * Set options of select "items_per_page"
2288
-	 * @param array $items_per_page_list
2287
+	 * @param integer[] $items_per_page_list
2289 2288
 	 * @return static
2290 2289
 	 */
2291 2290
 	public function setItemsPerPageList(array $items_per_page_list, $include_all = TRUE)
@@ -2592,7 +2591,7 @@  discard block
 block discarded – undo
2592 2591
 
2593 2592
 	/**
2594 2593
 	 * Get items detail parameters
2595
-	 * @return array
2594
+	 * @return Column\ItemDetail
2596 2595
 	 */
2597 2596
 	public function getItemsDetail()
2598 2597
 	{
@@ -2666,7 +2665,7 @@  discard block
 block discarded – undo
2666 2665
 
2667 2666
 
2668 2667
 	/**
2669
-	 * @return Nette\Forms\Container|NULL
2668
+	 * @return Utils\ItemDetailForm|null
2670 2669
 	 */
2671 2670
 	public function getItemDetailForm()
2672 2671
 	{
Please login to merge, or discard this patch.