HOME


Mini Shell 1.0
DIR: /home/dhnidqcz/journal.africaprag.org/lib/pkp/lib/vendor/gettext/translator/src/
Upload File :
Current File : /home/dhnidqcz/journal.africaprag.org/lib/pkp/lib/vendor/gettext/translator/src/Formatter.php
<?php
declare(strict_types = 1);

namespace Gettext;

class Formatter implements FormatterInterface
{
    public function format(string $text, array $args): string
    {
        if (empty($args)) {
            return $text;
        }

        return is_array($args[0]) ? strtr($text, $args[0]) : vsprintf($text, $args);
    }
}