Documentation and some fix

This commit is contained in:
Alex
2025-08-15 20:15:33 +03:00
parent ea1947239e
commit 00da3af39d
6 changed files with 154 additions and 20 deletions
-4
View File
@@ -35,15 +35,11 @@ final class ApiFactoryMethodsTest extends TestCase
$this->modelFactoryMock = $this->createMock(ModelFactory::class);
$this->loggerMock = $this->createMock(LoggerInterface::class);
$apiForDispatcher = $this->createMock(Api::class);
$dispatcher = new UpdateDispatcher($apiForDispatcher);
$this->api = new Api(
'fake-token',
$this->clientMock,
$this->modelFactoryMock,
$this->loggerMock,
$dispatcher,
);
}