19
19
use CleverAge \ProcessBundle \Model \ProcessState ;
20
20
use Doctrine \DBAL \Connection ;
21
21
use Doctrine \DBAL \Result ;
22
+ use Doctrine \DBAL \Types \Type ;
22
23
use Doctrine \Persistence \ManagerRegistry ;
23
24
use Psr \Log \LoggerInterface ;
24
25
use Psr \Log \LogLevel ;
25
26
use Symfony \Component \OptionsResolver \OptionsResolver ;
26
27
27
28
/**
28
29
* Fetch entities from doctrine.
30
+ *
31
+ * @phpstan-type Options array{
32
+ * 'sql': ?string,
33
+ * 'table': string,
34
+ * 'limit': ?int,
35
+ * 'empty_log_level': string,
36
+ * 'paginate': ?int,
37
+ * 'offset': ?int,
38
+ * 'input_as_params': bool,
39
+ * 'params': array<int<0, max>|string, mixed>,
40
+ * 'types': array<int, int|string|Type|null>|array<string, int|string|Type|null>
41
+ * }
29
42
*/
30
43
class DatabaseReaderTask extends AbstractConfigurableTask implements IterableTaskInterface, FinalizableTaskInterface
31
44
{
@@ -42,7 +55,7 @@ public function __construct(
42
55
/**
43
56
* Moves the internal pointer to the next element,
44
57
* return true if the task has a next element
45
- * return false if the task has terminated it's iteration.
58
+ * return false if the task has terminated its iteration.
46
59
*/
47
60
public function next (ProcessState $ state ): bool
48
61
{
@@ -57,6 +70,7 @@ public function next(ProcessState $state): bool
57
70
58
71
public function execute (ProcessState $ state ): void
59
72
{
73
+ /** @var Options $options */
60
74
$ options = $ this ->getOptions ($ state );
61
75
if (!$ this ->statement instanceof Result) {
62
76
$ this ->statement = $ this ->initializeStatement ($ state );
@@ -102,6 +116,7 @@ public function finalize(ProcessState $state): void
102
116
103
117
protected function initializeStatement (ProcessState $ state ): Result
104
118
{
119
+ /** @var Options $options */
105
120
$ options = $ this ->getOptions ($ state );
106
121
$ connection = $ this ->getConnection ($ state );
107
122
$ sql = $ options ['sql ' ];
@@ -121,7 +136,10 @@ protected function initializeStatement(ProcessState $state): Result
121
136
122
137
$ sql = $ qb ->getSQL ();
123
138
}
124
- $ params = $ options ['input_as_params ' ] ? $ state ->getInput () : $ options ['params ' ];
139
+
140
+ /** @var array<string> $inputAsParams */
141
+ $ inputAsParams = $ state ->getInput ();
142
+ $ params = $ options ['input_as_params ' ] ? $ inputAsParams : $ options ['params ' ];
125
143
126
144
return $ connection ->executeQuery ($ sql , $ params , $ options ['types ' ]);
127
145
}
@@ -168,7 +186,9 @@ protected function configureOptions(OptionsResolver $resolver): void
168
186
169
187
protected function getConnection (ProcessState $ state ): Connection
170
188
{
171
- /* @noinspection PhpIncompatibleReturnTypeInspection */
172
- return $ this ->doctrine ->getConnection ($ this ->getOption ($ state , 'connection ' ));
189
+ /** @var Connection $connection */
190
+ $ connection = $ this ->doctrine ->getConnection ($ this ->getOption ($ state , 'connection ' ));
191
+
192
+ return $ connection ;
173
193
}
174
194
}
0 commit comments