Skip to content

Commit 5f0aeac

Browse files
authored
feat(locale): introduce 'Locale' component (#445)
Signed-off-by: azjezz <azjezz@protonmail.com>
1 parent eb6bbfa commit 5f0aeac

File tree

6 files changed

+1049
-0
lines changed

6 files changed

+1049
-0
lines changed

docs/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@
3232
- [Psl\Interface](./component/interface.md)
3333
- [Psl\Iter](./component/iter.md)
3434
- [Psl\Json](./component/json.md)
35+
- [Psl\Locale](./component/locale.md)
3536
- [Psl\Math](./component/math.md)
3637
- [Psl\Network](./component/network.md)
3738
- [Psl\OS](./component/os.md)

docs/component/locale.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<!--
2+
This markdown file was generated using `docs/documenter.php`.
3+
4+
Any edits to it will likely be lost.
5+
-->
6+
7+
[*index](./../README.md)
8+
9+
---
10+
11+
### `Psl\Locale` Component
12+
13+
#### `Enums`
14+
15+
- [Locale](./../../src/Psl/Locale/Locale.php#L12)
16+
17+

docs/documenter.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -225,6 +225,7 @@ function get_all_components(): array
225225
'Psl\\Trait',
226226
'Psl\\Type',
227227
'Psl\\Unix',
228+
'Psl\\Locale',
228229
'Psl\\Vec',
229230
];
230231

src/Psl/Internal/Loader.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -829,6 +829,7 @@ final class Loader
829829
'Psl\\OS\\OperatingSystemFamily' => 'Psl/OS/OperatingSystemFamily.php',
830830
'Psl\\Password\\Algorithm' => 'Psl/Password/Algorithm.php',
831831
'Psl\\Shell\\ErrorOutputBehavior' => 'Psl/Shell/ErrorOutputBehavior.php',
832+
'Psl\\Locale\\Locale' => 'Psl/Locale/Locale.php',
832833
];
833834

834835
public const TYPE_CONSTANTS = 1;

0 commit comments

Comments
 (0)