Skip to content

Commit 57dc09a

Browse files
committed
Mark internal API as private
1 parent 5da8da1 commit 57dc09a

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

src/ExtLibeventLoop.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@
3535
*/
3636
class ExtLibeventLoop implements LoopInterface
3737
{
38+
/** @internal */
3839
const MICROSECONDS_PER_SECOND = 1000000;
3940

4041
private $eventBase;

src/StreamSelectLoop.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@
5252
*/
5353
class StreamSelectLoop implements LoopInterface
5454
{
55+
/** @internal */
5556
const MICROSECONDS_PER_SECOND = 1000000;
5657

5758
private $futureTickQueue;
@@ -268,7 +269,7 @@ private function waitForStreamActivity($timeout)
268269
* @return integer|false The total number of streams that are ready for read/write.
269270
* Can return false if stream_select() is interrupted by a signal.
270271
*/
271-
protected function streamSelect(array &$read, array &$write, $timeout)
272+
private function streamSelect(array &$read, array &$write, $timeout)
272273
{
273274
if ($read || $write) {
274275
$except = null;

0 commit comments

Comments
 (0)