PageRenderTime 24ms CodeModel.GetById 0ms RepoModel.GetById 0ms app.codeStats 0ms

/engines/smarty/plugins/modifier.sprintf.php

https://bitbucket.org/Balancer/bors-core
PHP | 5 lines | 5 code | 0 blank | 0 comment | 0 complexity | e305ddadf3715f2432a9a195a521c509 MD5 | raw file
Possible License(s): LGPL-2.1, GPL-3.0
  1. <?php
  2. function smarty_modifier_sprintf($data, $mask)
  3. {
  4. return sprintf($mask, $data);
  5. }