From 93e90c113be0608906e3d667660ca284f720d423 Mon Sep 17 00:00:00 2001 From: Daniil Gentili Date: Sun, 19 Nov 2023 16:47:37 +0100 Subject: [PATCH] Bump --- docs | 2 +- src/API.php | 2 +- src/Settings/Database/DriverDatabaseAbstract.php | 8 ++++---- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/docs b/docs index d5ddbba4d..9dcd3af0d 160000 --- a/docs +++ b/docs @@ -1 +1 @@ -Subproject commit d5ddbba4da0c9e6540c47f92c61041549a098f9c +Subproject commit 9dcd3af0dab578f62803b93a16ca23c3564e5e12 diff --git a/src/API.php b/src/API.php index 0ac1e6d61..e58992866 100644 --- a/src/API.php +++ b/src/API.php @@ -51,7 +51,7 @@ final class API extends AbstractAPI * * @var string */ - public const RELEASE = '8.0.0-beta160'; + public const RELEASE = '8.0.0-beta161'; /** * We're not logged in. * diff --git a/src/Settings/Database/DriverDatabaseAbstract.php b/src/Settings/Database/DriverDatabaseAbstract.php index 61ff01561..6690a9590 100644 --- a/src/Settings/Database/DriverDatabaseAbstract.php +++ b/src/Settings/Database/DriverDatabaseAbstract.php @@ -49,7 +49,7 @@ abstract class DriverDatabaseAbstract extends DatabaseAbstract * * Note that the session folder must still NEVER be deleted *if* MadelineProto is running, * or else the session will be dropped from the database due to AUTH_KEY_DUPLICATED errors. - * + * * Stopping the container and then deleting the session folder is 100% OK though. */ protected ?string $ephemeralFilesystemPrefix = null; @@ -64,7 +64,7 @@ abstract class DriverDatabaseAbstract extends DatabaseAbstract * * Note that the session folder must still NEVER be deleted *if* MadelineProto is running, * or else the session will be dropped from the database due to AUTH_KEY_DUPLICATED errors. - * + * * Stopping the container and then deleting the session folder is 100% OK though. */ public function getEphemeralFilesystemPrefix(): ?string @@ -82,9 +82,9 @@ public function getEphemeralFilesystemPrefix(): ?string * * Note that the session folder must still NEVER be deleted *if* MadelineProto is running, * or else the session will be dropped from the database due to AUTH_KEY_DUPLICATED errors. - * + * * Stopping the container and then deleting the session folder is 100% OK though. - * + * * @param ?string $ephemeralFilesystemPrefix The database prefix */ public function setEphemeralFilesystemPrefix(?string $ephemeralFilesystemPrefix): static