1 | <?php |
||
15 | class Module implements LoadableInterface |
||
16 | { |
||
17 | /** @var \lessc LESS compiler */ |
||
18 | protected $less; |
||
19 | |||
20 | /** SamsonFramework load preparation stage handler */ |
||
21 | 2 | public function prepare() |
|
29 | |||
30 | /** |
||
31 | * New resource file update handler. |
||
32 | * |
||
33 | * @param string $type Resource type(extension) |
||
34 | * @param string $content Resource content |
||
35 | * @param string $file LESS file path |
||
36 | * |
||
37 | * @throws \Exception |
||
38 | */ |
||
39 | 2 | public function renderer($type, &$content, $file = '') |
|
53 | } |
||
54 |