Skip to content
This repository was archived by the owner on Apr 7, 2025. It is now read-only.

Commit 8cdba93

Browse files
committed
Update code-style 💻
1 parent bcebe07 commit 8cdba93

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

‎src/DataTransferObject.php

+4-2
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ abstract class DataTransferObject implements Contract
3535
*/
3636
public function __construct(array $items = [])
3737
{
38-
$this->merge($items);
38+
$this->merge($items);
3939
}
4040

4141
public function get(string $key)
@@ -59,7 +59,9 @@ public function set(string $key, $value): DataTransferObject
5959
}
6060

6161
/**
62-
* @throws \ReflectionException
62+
* @param array $items
63+
*
64+
* @throws ReflectionException
6365
*/
6466
public function merge(array $items): DataTransferObject
6567
{

0 commit comments

Comments
 (0)