@@ -268,7 +268,7 @@ discard block |
||
| 268 | 268 | * Get or set option for grid. |
| 269 | 269 | * |
| 270 | 270 | * @param string $key |
| 271 | - * @param mixed $value |
|
| 271 | + * @param boolean $value |
|
| 272 | 272 | * |
| 273 | 273 | * @return $this|mixed |
| 274 | 274 | */ |
@@ -453,7 +453,7 @@ discard block |
||
| 453 | 453 | /** |
| 454 | 454 | * Get the grid paginator. |
| 455 | 455 | * |
| 456 | - * @return mixed |
|
| 456 | + * @return Tools\Paginator |
|
| 457 | 457 | */ |
| 458 | 458 | public function paginator() |
| 459 | 459 | { |
@@ -807,7 +807,7 @@ discard block |
||
| 807 | 807 | /** |
| 808 | 808 | * Dynamically add columns to the grid view. |
| 809 | 809 | * |
| 810 | - * @param $method |
|
| 810 | + * @param string $method |
|
| 811 | 811 | * @param $arguments |
| 812 | 812 | * |
| 813 | 813 | * @return Column |
@@ -3,7 +3,6 @@ |
||
| 3 | 3 | namespace Encore\Admin\Grid\Concerns; |
| 4 | 4 | |
| 5 | 5 | use Encore\Admin\Grid; |
| 6 | -use Encore\Admin\Grid\Column; |
|
| 7 | 6 | use Encore\Admin\Grid\Exporter; |
| 8 | 7 | use Encore\Admin\Grid\Exporters\AbstractExporter; |
| 9 | 8 | |
@@ -4,10 +4,6 @@ |
||
| 4 | 4 | |
| 5 | 5 | use Encore\Admin\Grid; |
| 6 | 6 | use Encore\Admin\Grid\Column; |
| 7 | -use Illuminate\Database\Eloquent\Model; |
|
| 8 | -use Illuminate\Support\Arr; |
|
| 9 | -use Illuminate\Support\Collection; |
|
| 10 | -use Illuminate\Support\Str; |
|
| 11 | 7 | |
| 12 | 8 | class CsvExporter extends AbstractExporter |
| 13 | 9 | { |