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 ProcessBuilderFactoryAwareInterface
15 {
16 /**
17 * Returns the current process builder factory
18 *
19 * @return ProcessBuilderFactoryInterface
20 */
21 public function getProcessBuilderFactory();
22  
23 /**
24 * Set a process builder factory
25 *
26 * @param ProcessBuilderFactoryInterface $factory
27 */
28 public function setProcessBuilderFactory(ProcessBuilderFactoryInterface $factory);
29 }