Jarves\Translation\TranslationInterface::t PHP Method

t() public method

public t ( $id, $plural = null, $count, $context = null )
    public function t($id, $plural = null, $count = 0, $context = null);

Usage Example

Beispiel #1
0
 public function t($t, $plural = '', $count = 0)
 {
     return $this->translator->t($t, $plural, $count);
 }
TranslationInterface