equal
deleted
inserted
replaced
|
1 <?php |
|
2 |
|
3 /* |
|
4 * This file is part of SwiftMailer. |
|
5 * (c) 2004-2009 Chris Corbyn |
|
6 * |
|
7 * For the full copyright and license information, please view the LICENSE |
|
8 * file that was distributed with this source code. |
|
9 */ |
|
10 |
|
11 |
|
12 /** |
|
13 * An OutputByteStream which specifically reads from a file. |
|
14 * @package Swift |
|
15 * @subpackage ByteStream |
|
16 * @author Chris Corbyn |
|
17 */ |
|
18 interface Swift_FileStream extends Swift_OutputByteStream |
|
19 { |
|
20 |
|
21 /** |
|
22 * Get the complete path to the file. |
|
23 * @return string |
|
24 */ |
|
25 public function getPath(); |
|
26 |
|
27 } |