Skip to content

Commit 6ed8903

Browse files
committed
Fix PHPDoc
1 parent 2fde25c commit 6ed8903

1 file changed

Lines changed: 3 additions & 5 deletions

File tree

src/DoctrineWriter.php

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -155,10 +155,8 @@ public function disableTruncate()
155155

156156
/**
157157
* Disable Doctrine logging
158-
*
159-
* @return $this
160158
*/
161-
public function prepare()
159+
public function prepare(): void
162160
{
163161
$this->disableLogging();
164162

@@ -170,7 +168,7 @@ public function prepare()
170168
/**
171169
* Re-enable Doctrine logging
172170
*/
173-
public function finish()
171+
public function finish(): void
174172
{
175173
$this->flush();
176174
$this->reEnableLogging();
@@ -179,7 +177,7 @@ public function finish()
179177
/**
180178
* {@inheritdoc}
181179
*/
182-
public function writeItem(array $item)
180+
public function writeItem(array $item): void
183181
{
184182
$object = $this->findOrCreateItem($item);
185183

0 commit comments

Comments
 (0)