Skip to content

Commit 0985ce0

Browse files
committed
Removed unused php docs
1 parent 5e045a3 commit 0985ce0

File tree

2 files changed

+1
-10
lines changed

2 files changed

+1
-10
lines changed

src/VerifierServer/PersistentState.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -284,8 +284,6 @@ public function __sleep(): array
284284

285285
/**
286286
* Reinitializes the PDO object after deserialization.
287-
*
288-
* @return void
289287
*/
290288
public function __wakeup(): void
291289
{

src/VerifierServer/Server.php

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -130,8 +130,6 @@ private function __initStreamSocketServer(): void
130130
* requests via the `handleReact` method and logs errors using the `logError` method.
131131
*
132132
* @param LoopInterface|null $loop Optional event loop instance. If null, the global loop is used.
133-
*
134-
* @return void
135133
*/
136134
private function __initReactHttpServer(?LoopInterface $loop = null): void
137135
{
@@ -168,8 +166,6 @@ public function start(bool $start_loop = false): void
168166
* @param bool $start_loop Determines whether to start the event loop.
169167
* - If true, the event loop will be started.
170168
* - If false, the event loop will not be started.
171-
*
172-
* @return void
173169
*/
174170
private function __startReact(bool $start_loop = false): void
175171
{
@@ -185,8 +181,6 @@ private function __startReact(bool $start_loop = false): void
185181
* and the `pcntl` extension is loaded, it dispatches pending signals
186182
* using `pcntl_signal_dispatch`. When a client connection is accepted,
187183
* it delegates the handling of the connection to the `handleResource` method.
188-
*
189-
* @return void
190184
*/
191185
private function __startResource(): void
192186
{
@@ -435,6 +429,7 @@ public function setLogger(LoggerInterface|true|null $logger): void
435429
*
436430
* @param array|PersistentState $state The state to set, either as an
437431
* array of options or a PersistentState object.
432+
*
438433
* @return void
439434
*/
440435
public function setState(array|PersistentState $state)
@@ -451,8 +446,6 @@ public function setState(array|PersistentState $state)
451446
* This method checks if the `$state` property is set. If it is, it initializes
452447
* the `$endpoints` property with a default endpoint and a reference to the
453448
* verified endpoint.
454-
*
455-
* @return void
456449
*/
457450
private function __setVerifiedEndpoint(PersistentState &$state): void
458451
{

0 commit comments

Comments
 (0)