/framework/vendor/swift/lib/classes/Swift/Plugins/Timer.php

http://zoop.googlecode.com/ · PHP · 26 lines · 5 code · 4 blank · 17 comment · 0 complexity · cde494e3124e5b4183ec1d1570e67278 MD5 · raw file

  1. <?php
  2. /*
  3. * This file is part of SwiftMailer.
  4. * (c) 2004-2009 Chris Corbyn
  5. *
  6. * For the full copyright and license information, please view the LICENSE
  7. * file that was distributed with this source code.
  8. */
  9. /**
  10. * Provides timestamp data.
  11. * @package Swift
  12. * @subpackage Plugins
  13. * @author Chris Corbyn
  14. */
  15. interface Swift_Plugins_Timer
  16. {
  17. /**
  18. * Get the current UNIX timestamp.
  19. * @return int
  20. */
  21. public function getTimestamp();
  22. }