Skip to content

Commit 0bd4863

Browse files
committed
feat: bump versions here too
1 parent fea4f11 commit 0bd4863

File tree

2 files changed

+7
-11
lines changed

2 files changed

+7
-11
lines changed

app/BlueprintFramework/Libraries/ExtensionLibrary/Admin/BlueprintAdminLibrary.php

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ class BlueprintAdminLibrary extends BlueprintBaseLibrary
2323
*
2424
* @param 'info'|'warning'|'danger'|'success' $type The type of alert.
2525
* @param string $message Alert message.
26-
* @since beta-2025-08
26+
* @since beta-2025-09
2727
*
2828
* [BlueprintExtensionLibrary documentation](https://blueprint.zip/docs/?page=documentation/$blueprint)
2929
*/
@@ -80,7 +80,7 @@ public function importScript(string $url): string
8080
* (Deprecated) Display a notification on the Pterodactyl admin panel (on next page load).
8181
* Available for backwards compatibility, do not use this function, use alert() instead.
8282
*
83-
* @deprecated beta-2025-08
83+
* @deprecated beta-2025-09
8484
* @param string $text Notification contents
8585
*
8686
* [BlueprintExtensionLibrary documentation](https://blueprint.zip/docs/?page=documentation/$blueprint)
@@ -100,9 +100,7 @@ public function notify(string $text): void
100100
*
101101
* [BlueprintExtensionLibrary documentation](https://blueprint.zip/docs/?page=documentation/$blueprint)
102102
*/
103-
public function notifyAfter($delay, $text): void
104-
{
105-
}
103+
public function notifyAfter($delay, $text): void {}
106104

107105
/**
108106
* (Deprecated) Display a notification on the Pterodactyl admin panel and refresh the page instantly.
@@ -114,7 +112,5 @@ public function notifyAfter($delay, $text): void
114112
*
115113
* [BlueprintExtensionLibrary documentation](https://blueprint.zip/docs/?page=documentation/$blueprint)
116114
*/
117-
public function notifyNow($text): void
118-
{
119-
}
115+
public function notifyNow($text): void {}
120116
}

app/BlueprintFramework/Libraries/ExtensionLibrary/BlueprintBaseLibrary.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ public function dbForgetAll(string $table): bool
180180
/**
181181
* (Deprecated) Read and returns the content of a given file.
182182
*
183-
* @deprecated beta-2025-08
183+
* @deprecated beta-2025-09
184184
* @param string $path Path to file
185185
* @return string File contents or empty string if file does not exist or is not readable
186186
*
@@ -201,7 +201,7 @@ public function fileRead(string $path): string
201201
/**
202202
* (Deprecated) Attempts to create a file.
203203
*
204-
* @deprecated beta-2025-08
204+
* @deprecated beta-2025-09
205205
* @param string $path File name/path
206206
*
207207
* [BlueprintExtensionLibrary documentation](https://blueprint.zip/docs/?page=documentation/$blueprint)
@@ -215,7 +215,7 @@ public function fileMake(string $path): void
215215
/**
216216
* (Deprecated) Attempts to remove a file or directory.
217217
*
218-
* @deprecated beta-2025-08
218+
* @deprecated beta-2025-09
219219
* @param string $path Path to file/directory
220220
* @return bool Whether the file/directory was removed
221221
*

0 commit comments

Comments
 (0)