@@ -42,9 +42,9 @@ public static function none(): self
4242 public static function slow3G (): self
4343 {
4444 return new self (
45- downloadThroughput: 50 * 1024 ,
46- uploadThroughput: 50 * 1024 ,
47- latency: 2000 ,
45+ downloadThroughput: 50 * 1024 ,
46+ uploadThroughput: 50 * 1024 ,
47+ latency: 2000 ,
4848 );
4949 }
5050
@@ -54,9 +54,9 @@ public static function slow3G(): self
5454 public static function fast3G (): self
5555 {
5656 return new self (
57- downloadThroughput: 150 * 1024 ,
58- uploadThroughput: 75 * 1024 ,
59- latency: 562 ,
57+ downloadThroughput: 150 * 1024 ,
58+ uploadThroughput: 75 * 1024 ,
59+ latency: 562 ,
6060 );
6161 }
6262
@@ -66,9 +66,9 @@ public static function fast3G(): self
6666 public static function fast4G (): self
6767 {
6868 return new self (
69- downloadThroughput: (int ) (1.6 * 1024 * 1024 ),
70- uploadThroughput: 750 * 1024 ,
71- latency: 150 ,
69+ downloadThroughput: (int ) (1.6 * 1024 * 1024 ),
70+ uploadThroughput: 750 * 1024 ,
71+ latency: 150 ,
7272 );
7373 }
7474
@@ -78,9 +78,9 @@ public static function fast4G(): self
7878 public static function dsl (): self
7979 {
8080 return new self (
81- downloadThroughput: 2 * 1024 * 1024 ,
82- uploadThroughput: 1 * 1024 * 1024 ,
83- latency: 5 ,
81+ downloadThroughput: 2 * 1024 * 1024 ,
82+ uploadThroughput: 1 * 1024 * 1024 ,
83+ latency: 5 ,
8484 );
8585 }
8686
@@ -90,9 +90,9 @@ public static function dsl(): self
9090 public static function wifi (): self
9191 {
9292 return new self (
93- downloadThroughput: 30 * 1024 * 1024 ,
94- uploadThroughput: 15 * 1024 * 1024 ,
95- latency: 2 ,
93+ downloadThroughput: 30 * 1024 * 1024 ,
94+ uploadThroughput: 15 * 1024 * 1024 ,
95+ latency: 2 ,
9696 );
9797 }
9898
0 commit comments