13
13
namespace Omines \DataTablesBundle \Exporter ;
14
14
15
15
use Omines \DataTablesBundle \DataTable ;
16
- use Omines \DataTablesBundle \DataTableState ;
17
16
use Omines \DataTablesBundle \Exception \InvalidArgumentException ;
18
17
use Omines \DataTablesBundle \Exporter \Event \DataTableExporterResponseEvent ;
19
18
use Symfony \Component \HttpFoundation \BinaryFileResponse ;
@@ -44,7 +43,6 @@ class DataTableExporterManager
44
43
/**
45
44
* DataTableExporterManager constructor.
46
45
*
47
- * @param DataTableExporterCollection $exporterCollection
48
46
* @param TranslatorInterface|LegacyTranslatorInterface $translator
49
47
*/
50
48
public function __construct (DataTableExporterCollection $ exporterCollection , $ translator )
@@ -58,8 +56,6 @@ public function __construct(DataTableExporterCollection $exporterCollection, $tr
58
56
}
59
57
60
58
/**
61
- * @param string $exporterName
62
- *
63
59
* @return DataTableExporterManager
64
60
*/
65
61
public function setExporterName (string $ exporterName ): self
@@ -70,8 +66,6 @@ public function setExporterName(string $exporterName): self
70
66
}
71
67
72
68
/**
73
- * @param DataTable $dataTable
74
- *
75
69
* @return DataTableExporterManager
76
70
*/
77
71
public function setDataTable (DataTable $ dataTable ): self
@@ -82,8 +76,6 @@ public function setDataTable(DataTable $dataTable): self
82
76
}
83
77
84
78
/**
85
- * @return Response
86
- *
87
79
* @throws \Omines\DataTablesBundle\Exception\UnknownDataTableExporterException
88
80
*/
89
81
public function getResponse (): Response
@@ -121,8 +113,6 @@ private function getColumnNames(): array
121
113
*
122
114
* A Generator is created in order to remove the 'DT_RowId' key
123
115
* which is created by some adapters (e.g. ORMAdapter).
124
- *
125
- * @return \Iterator
126
116
*/
127
117
private function getAllData (): \Iterator
128
118
{
0 commit comments