1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
<?php /** * The API provided by each builder. * * @package lucatume\DI52 */
namespace lucatume\DI52\Builders;
/** * Interface BuilderInterface * * @package lucatume\DI52\Builders */ interface BuilderInterface { /** * Builds and returns the implementation handled by the builder. * * @return mixed The implementation provided by the builder. */ public function build(); }
|