/framework/vendor/swift/lib/classes/Swift/FileStream.php

http://zoop.googlecode.com/ · PHP · 28 lines · 5 code · 5 blank · 18 comment · 0 complexity · 79bae27e9b10125d9a1c677da9f0cef3 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. //@require 'Swift/OutputByteStream.php';
  10. /**
  11. * An OutputByteStream which specifically reads from a file.
  12. * @package Swift
  13. * @subpackage ByteStream
  14. * @author Chris Corbyn
  15. */
  16. interface Swift_FileStream extends Swift_OutputByteStream
  17. {
  18. /**
  19. * Get the complete path to the file.
  20. * @return string
  21. */
  22. public function getPath();
  23. }