/var/www/vhosts/ihelp.ro/_OLD/vendor/cakephp/cakephp/src/I18n
NameSizeModeActions
Formatter/-0755rm
Middleware/-0755rm
Parser/-0755rm
ChainMessagesLoader.php23350644editdlrm
composer.json13120644editdlrm
Date.php70330644editdlrm
DateFormatTrait.php167540644editdlrm
FrozenDate.php71070644editdlrm
FrozenTime.php99150644editdlrm
functions.php86120644editdlrm
I18n.php98640644editdlrm
I18nDateTimeInterface.php96570644editdlrm
LICENSE.txt12040644editdlrm
MessagesFileLoader.php55730644editdlrm
Number.php176990644editdlrm
PluralRules.php58300644editdlrm
README.md28790644editdlrm
RelativeTimeFormatter.php152220644editdlrm
Time.php122090644editdlrm
Translator.php37270644editdlrm
TranslatorFactory.php22350644editdlrm
TranslatorRegistry.php95680644editdlrm
Edit: /var/www/vhosts/ihelp.ro/_OLD/vendor/cakephp/cakephp/src/I18n/ChainMessagesLoader.php (2335B)
_loaders = $loaders; } /** * Executes this object returning the translations package as configured in * the chain. * * @return \Aura\Intl\Package * @throws \RuntimeException if any of the loaders in the chain is not a valid callable */ public function __invoke(): Package { foreach ($this->_loaders as $k => $loader) { if (!is_callable($loader)) { throw new RuntimeException(sprintf( 'Loader "%s" in the chain is not a valid callable', $k )); } $package = $loader(); if (!$package) { continue; } if (!($package instanceof Package)) { throw new RuntimeException(sprintf( 'Loader "%s" in the chain did not return a valid Package object', $k )); } return $package; } return new Package(); } }