Skip to content

Commit 7d5636c

Browse files
committed
style: composer cs-fix
Because of update of coding standard.
1 parent c648852 commit 7d5636c

3 files changed

Lines changed: 10 additions & 10 deletions

File tree

src/Handlers/BaseHandler.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,9 @@ abstract public function get(string $class, string $property, ?string $context =
2626
*
2727
* @param mixed $value
2828
*
29-
* @throws RuntimeException
30-
*
3129
* @return void
30+
*
31+
* @throws RuntimeException
3232
*/
3333
public function set(string $class, string $property, $value = null, ?string $context = null)
3434
{
@@ -41,9 +41,9 @@ public function set(string $class, string $property, $value = null, ?string $con
4141
* Not all Handlers will support writing values.
4242
* Must throw RuntimeException for any failures.
4343
*
44-
* @throws RuntimeException
45-
*
4644
* @return void
45+
*
46+
* @throws RuntimeException
4747
*/
4848
public function forget(string $class, string $property, ?string $context = null)
4949
{

src/Handlers/DatabaseHandler.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,9 +60,9 @@ public function get(string $class, string $property, ?string $context = null)
6060
*
6161
* @param mixed $value
6262
*
63-
* @throws RuntimeException For database failures
64-
*
6563
* @return void
64+
*
65+
* @throws RuntimeException For database failures
6666
*/
6767
public function set(string $class, string $property, $value = null, ?string $context = null)
6868
{

src/Settings.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -104,9 +104,9 @@ public function forget(string $key, ?string $context = null)
104104
/**
105105
* Returns the handler that is set to store values.
106106
*
107-
* @throws RuntimeException
108-
*
109107
* @return BaseHandler[]
108+
*
109+
* @throws RuntimeException
110110
*/
111111
private function getWriteHandlers()
112112
{
@@ -128,9 +128,9 @@ private function getWriteHandlers()
128128
/**
129129
* Analyzes the given key and breaks it into the class.field parts.
130130
*
131-
* @throws InvalidArgumentException
132-
*
133131
* @return string[]
132+
*
133+
* @throws InvalidArgumentException
134134
*/
135135
private function parseDotSyntax(string $key): array
136136
{

0 commit comments

Comments
 (0)