@@ -51,7 +51,7 @@ public function dataProviderFunnyLetters()
51
51
* @param array $hourLetters
52
52
* @param array $minLetters
53
53
*/
54
- public function test_funny_letters (string $ string , int $ expected , array $ hourLetters , array $ minLetters ) : void
54
+ public function test_funny_letters (string $ string , int $ expected , array $ hourLetters , array $ minLetters )
55
55
{
56
56
$ this ->assertEquals ($ expected , (new TimestringParser ($ hourLetters , $ minLetters ))->parseTimeString ($ string ));
57
57
}
@@ -75,7 +75,7 @@ public function dataProviderReadme() : array
75
75
* @param string $string
76
76
* @param int $expected
77
77
*/
78
- public function test_readme_examples (string $ string , int $ expected ) : void
78
+ public function test_readme_examples (string $ string , int $ expected )
79
79
{
80
80
$ parser = new TimestringParser (['h ' ,'t ' ,'u ' ], ['m ' ,'x ' ,'y ' ]);
81
81
$ this ->assertEquals ($ expected , $ parser ->parseTimeString ($ string ));
@@ -98,7 +98,7 @@ public function dataProviderLowMinutes() : array
98
98
* @param int $expected
99
99
* @param int $lowinutes
100
100
*/
101
- public function test_low_minutes (int $ number , int $ expected , int $ lowinutes ) : void
101
+ public function test_low_minutes (int $ number , int $ expected , int $ lowinutes )
102
102
{
103
103
$ parser = new TimestringParser (['h ' ], ['m ' ], $ lowinutes );
104
104
$ this ->assertEquals ($ expected , $ parser ->parseTimeString ($ number ));
0 commit comments