Add void return to method in tests. (#20602)

This commit is contained in:
Wilmer Arambula
2025-10-14 06:37:35 -03:00
committed by GitHub
parent 30824c5dcf
commit d71f7309ae
249 changed files with 2749 additions and 2538 deletions

View File

@ -55,7 +55,7 @@ abstract class ColumnSchemaBuilderTest extends DatabaseTestCase
* @param int|null $length
* @param mixed $calls
*/
public function testCustomTypes($expected, $type, $length, $calls)
public function testCustomTypes($expected, $type, $length, $calls): void
{
$this->checkBuildString($expected, $type, $length, $calls);
}
@ -66,7 +66,7 @@ abstract class ColumnSchemaBuilderTest extends DatabaseTestCase
* @param int|null $length
* @param array $calls
*/
public function checkBuildString($expected, $type, $length, $calls)
public function checkBuildString($expected, $type, $length, $calls): void
{
$builder = $this->getColumnSchemaBuilder($type, $length);
foreach ($calls as $call) {