refactor: Add void to PHPUnit test methods

Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
This commit is contained in:
Christoph Wurst 2024-09-17 23:25:09 +02:00
Родитель 83854dd4c6
Коммит 353200620f
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: CC42AC2A7F0E56D8
2 изменённых файлов: 7 добавлений и 3 удалений

Просмотреть файл

@ -8,6 +8,7 @@ declare(strict_types=1);
*/
use Rector\Config\RectorConfig;
use Rector\TypeDeclaration\Rector\Class_\AddTestsVoidReturnTypeWhereNoReturnRector;
return RectorConfig::configure()
->withPaths([
@ -23,4 +24,7 @@ return RectorConfig::configure()
)
->withPhpSets(
php73: true,
);
)
->withRules([
AddTestsVoidReturnTypeWhereNoReturnRector::class,
]);

Просмотреть файл

@ -81,7 +81,7 @@ class SyncServiceTest extends TestCase {
);
}
public function testPartialSyncOnUncachedMailbox() {
public function testPartialSyncOnUncachedMailbox(): void {
$account = $this->createMock(Account::class);
$mailbox = $this->createMock(Mailbox::class);
$mailbox->expects($this->once())
@ -100,7 +100,7 @@ class SyncServiceTest extends TestCase {
);
}
public function testSyncMailboxReturnsFolderStats() {
public function testSyncMailboxReturnsFolderStats(): void {
$account = $this->createMock(Account::class);
$account->method('getUserId')->willReturn('user');
$mailbox = new Mailbox();