1 | <?php |
||
11 | class BlazeRuntime implements RuntimeExtensionInterface |
||
12 | { |
||
13 | /** |
||
14 | * @var BlazeManagerInterface blaze |
||
15 | */ |
||
16 | protected $blaze; |
||
17 | |||
18 | /** |
||
19 | * @param BlazeManagerInterface $blaze |
||
20 | */ |
||
21 | public function __construct(BlazeManagerInterface $blaze) |
||
25 | |||
26 | /** |
||
27 | * Call the blaze service. |
||
28 | * |
||
29 | * @param mixed $object |
||
30 | * @param string $action |
||
31 | * @param bool $absolute |
||
32 | * |
||
33 | * @return string |
||
34 | */ |
||
35 | public function blaze($object, $action, $absolute = false) |
||
50 | } |
||
51 |