|
Last change
on this file was 887, checked in by chronos, 5 years ago |
- Added: Static types added to almost all classes, methods and function. Supported by PHP 7.4.
- Fixed: Various found code issues.
|
|
File size:
239 bytes
|
| Line | |
|---|
| 1 | <?php
|
|---|
| 2 |
|
|---|
| 3 | class LocaleTexten extends LocaleText
|
|---|
| 4 | {
|
|---|
| 5 | function Load(): void
|
|---|
| 6 | {
|
|---|
| 7 | $this->Code = 'en';
|
|---|
| 8 | $this->Title = 'English';
|
|---|
| 9 | $this->Data = array(
|
|---|
| 10 | '' => array(
|
|---|
| 11 | 'Can\'t connect to database' => '',
|
|---|
| 12 | ),
|
|---|
| 13 | );
|
|---|
| 14 | }
|
|---|
| 15 | }
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.