1
0
mirror of https://github.com/danog/MadelineProto.git synced 2024-11-30 10:38:59 +01:00

Mark some methods as internal

This commit is contained in:
Daniil Gentili 2023-06-13 22:43:56 +02:00
parent 01b97c2aab
commit 9914df223d
2 changed files with 7 additions and 1 deletions

2
docs

@ -1 +1 @@
Subproject commit 5168b40423f0133b249526e88d365adf0d96f9a3
Subproject commit 32b8e26cbf62cf7813d0f29467574b8b4a450338

View File

@ -109,6 +109,8 @@ abstract class StrTools extends Extension
/**
* Escape string for markdown.
*
* @internal
*
* @param string $hwat String to escape
*/
public static function markdownEscape(string $hwat): string
@ -118,6 +120,8 @@ abstract class StrTools extends Extension
/**
* Escape type name.
*
* @internal
*
* @param string $type String to escape
*/
public static function typeEscape(string $type): string
@ -128,6 +132,8 @@ abstract class StrTools extends Extension
/**
* Escape method name.
*
* @internal
*
* @param string $method Method name
*/
public static function methodEscape(string $method): string