Skip to content

Commit 01e6198

Browse files
wouterjnicolas-grekas
authored andcommitted
Add missing PHPdoc return types
1 parent 5e6dd40 commit 01e6198

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

Exception/ProcessTimedOutException.php

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,11 +43,17 @@ public function getProcess()
4343
return $this->process;
4444
}
4545

46+
/**
47+
* @return bool
48+
*/
4649
public function isGeneralTimeout()
4750
{
4851
return self::TYPE_GENERAL === $this->timeoutType;
4952
}
5053

54+
/**
55+
* @return bool
56+
*/
5157
public function isIdleTimeout()
5258
{
5359
return self::TYPE_IDLE === $this->timeoutType;

InputStream.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,8 @@ public function close()
6262

6363
/**
6464
* Tells whether the write buffer is closed or not.
65+
*
66+
* @return bool
6567
*/
6668
public function isClosed()
6769
{

0 commit comments

Comments
 (0)