| Conditions | 2 |
| Paths | 1 |
| Total Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 4 |
| CRAP Score | 2 |
| Changes | 0 | ||
| 1 | <?php |
||
| 42 | 2 | public static function ephimeral_port($host, $range_start = 1000, $range_end = 5000, $timeout = 1000) |
|
| 43 | { |
||
| 44 | return Attempt::make(function() use ($host, $range_start, $range_end) { |
||
| 45 | 2 | $port = rand($range_start, $range_end); |
|
| 46 | 2 | return Network::is_port_open($host, $port) ? $port : FALSE; |
|
| 47 | 2 | }, $timeout); |
|
| 48 | } |
||
| 49 | } |
||
| 50 |