scratch – Blame information for rev 115

Subversion Repositories:
Rev:
Rev Author Line No. Line
115 office 1 <?php
2  
3 /*
4 * This file is part of Alchemy\BinaryDriver.
5 *
6 * (c) Alchemy <info@alchemy.fr>
7 *
8 * For the full copyright and license information, please view the LICENSE
9 * file that was distributed with this source code.
10 */
11  
12 namespace Alchemy\BinaryDriver;
13  
14 interface ProcessRunnerAwareInterface
15 {
16 /**
17 * Returns the current process runner
18 *
19 * @return ProcessRunnerInterface
20 */
21 public function getProcessRunner();
22  
23 /**
24 * Sets a process runner
25 *
26 * @param ProcessRunnerInterface $runner
27 */
28 public function setProcessRunner(ProcessRunnerInterface $runner);
29 }