There was an error while loading. Please reload this page.
1 parent 2fde25c commit 6ed8903Copy full SHA for 6ed8903
1 file changed
src/DoctrineWriter.php
@@ -155,10 +155,8 @@ public function disableTruncate()
155
156
/**
157
* Disable Doctrine logging
158
- *
159
- * @return $this
160
*/
161
- public function prepare()
+ public function prepare(): void
162
{
163
$this->disableLogging();
164
@@ -170,7 +168,7 @@ public function prepare()
170
168
171
169
* Re-enable Doctrine logging
172
173
- public function finish()
+ public function finish(): void
174
175
$this->flush();
176
$this->reEnableLogging();
@@ -179,7 +177,7 @@ public function finish()
179
177
180
178
* {@inheritdoc}
181
182
- public function writeItem(array $item)
+ public function writeItem(array $item): void
183
184
$object = $this->findOrCreateItem($item);
185
0 commit comments