|
TYPO3 API
SVNRelease
|
00001 <?php 00002 00003 /* 00004 * This file is part of SwiftMailer. 00005 * (c) 2004-2009 Chris Corbyn 00006 * 00007 * For the full copyright and license information, please view the LICENSE 00008 * file that was distributed with this source code. 00009 */ 00010 00011 //@require 'Swift/OutputByteStream.php'; 00012 00013 /** 00014 * An OutputByteStream which specifically reads from a file. 00015 * @package Swift 00016 * @subpackage ByteStream 00017 * @author Chris Corbyn 00018 */ 00019 interface Swift_FileStream extends Swift_OutputByteStream 00020 { 00021 00022 /** 00023 * Get the complete path to the file. 00024 * @return string 00025 */ 00026 public function getPath(); 00027 00028 }
1.8.0