Advertisement
Guest User

Untitled

a guest
Mar 22nd, 2019
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. <?php
  2.  
  3. class SomePresenter
  4. {
  5. public function someAction()
  6. {
  7. // Kdyby/Translation differnce to natvie Symfony/Translation
  8. $this->translations->translate('Hi, my name is %name%', [
  9. - 'name' => 'Tom',
  10. + '%name%' => 'Tom',
  11. ]);
  12. }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement