summaryrefslogtreecommitdiffstats
path: root/source/OutputDependentInterface.php
blob: 29d4fe335a12b372349fdeb152781543597367c6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?php
/**
 * @author stev leibelt <artodeto@bazzline.net>
 * @since 2014-08-19
 */

/**
 * Interface OutputDependentInterface
 */
interface OutputDependentInterface
{
    /**
     * @return null|Output
     */
    public function getOutput();

    /**
     * @param Output $output
     */
    public function setOutput(Output $output);
}