diff options
author | rhatto <rhatto@riseup.net> | 2023-08-30 20:09:49 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-30 20:09:49 -0300 |
commit | 7e5536c3f641567143b31fb9f54468184083ebce (patch) | |
tree | 6864121f35e2f2ba9fd06cc1fb096671ace5e6fa /src/php-gettext/gettext.php | |
parent | 856e975127fff8f82b14f2886bb4ffb239541555 (diff) | |
parent | 8726754cb10f5c8db09f7012574450907af97cfa (diff) | |
download | semanticscuttle-7e5536c3f641567143b31fb9f54468184083ebce.tar.gz semanticscuttle-7e5536c3f641567143b31fb9f54468184083ebce.tar.bz2 |
Merge pull request #2 from jasonmm/rector
Update code to work with modern PHP.
Diffstat (limited to 'src/php-gettext/gettext.php')
-rw-r--r-- | src/php-gettext/gettext.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/php-gettext/gettext.php b/src/php-gettext/gettext.php index a121f9c..5b3886e 100644 --- a/src/php-gettext/gettext.php +++ b/src/php-gettext/gettext.php @@ -98,7 +98,7 @@ class gettext_reader { * @param object Reader the StreamReader object * @param boolean enable_cache Enable or disable caching of strings (default on) */ - function gettext_reader($Reader, $enable_cache = true) { + function __construct($Reader, $enable_cache = true) { // If there isn't a StreamReader, turn on short circuit mode. if (! $Reader || isset($Reader->error) ) { $this->short_circuit = true; |