2020class ClusteringPerformanceTest extends TestCase
2121{
2222 /**
23- * @const array<float>
23+ * @var array<float>
2424 */
2525 private const ZOOMS = [
2626 2.0 ,
@@ -29,7 +29,7 @@ class ClusteringPerformanceTest extends TestCase
2929 ];
3030
3131 /**
32- * @const array<string>
32+ * @var array<string>
3333 */
3434 private const ALGORITHMS = [
3535 GridClusteringAlgorithm::class,
@@ -53,7 +53,7 @@ public static function algorithmProvider(): iterable
5353 *
5454 * @dataProvider algorithmProvider
5555 */
56- public function testScenarioRegion50000 (ClusteringAlgorithmInterface $ algorithm , float $ zoom ): void
56+ public function testScenarioRegion50000 (ClusteringAlgorithmInterface $ algorithm , float $ zoom )
5757 {
5858 $ points = $ this ->generatePoints (50000 , 48.8 , 49 , 2.2 , 2.5 );
5959
@@ -65,7 +65,7 @@ public function testScenarioRegion50000(ClusteringAlgorithmInterface $algorithm,
6565 *
6666 * @dataProvider algorithmProvider
6767 */
68- public function testScenarioCountry5000 (ClusteringAlgorithmInterface $ algorithm , float $ zoom ): void
68+ public function testScenarioCountry5000 (ClusteringAlgorithmInterface $ algorithm , float $ zoom )
6969 {
7070 $ points = $ this ->generatePoints (5000 , 30 , 60 , -10 , 35 );
7171
@@ -77,7 +77,7 @@ public function testScenarioCountry5000(ClusteringAlgorithmInterface $algorithm,
7777 *
7878 * @dataProvider algorithmProvider
7979 */
80- public function testScenarioWorld100000 (ClusteringAlgorithmInterface $ algorithm , float $ zoom ): void
80+ public function testScenarioWorld100000 (ClusteringAlgorithmInterface $ algorithm , float $ zoom )
8181 {
8282 $ points = $ this ->generatePoints (100000 , -90 , 90 , -180 , 180 );
8383
0 commit comments