1: <?php
2:
3: /**
4: * Pry Framework
5: *
6: * LICENSE
7: *
8: * This source file is subject to the new BSD license that is bundled
9: * with this package in the file LICENSE.txt.
10: *
11: */
12:
13: namespace Pry\Feed\Writers;
14:
15: /**
16: * Writer de flux au format RSS.
17: * @category Pry
18: * @package Feed
19: * @subpackage Feed_Writers
20: * @version 1.0.0
21: * @author Olivier ROGER <oroger.fr>
22: *
23: */
24: interface Interfaces
25: {
26:
27: /**
28: * Finalise le flux et le retourne dans un fichier ou sous forme de chaine.
29: * Retourne le nombre de byte écrit si utilisation de fichier
30: * @return string|int
31: */
32: public function finalize();
33: }
34:
35: ?>