1 <?php
2
3 namespace BlueTihi;
4
5 class Core
6 {
7 protected static $engines;
8 protected static $contexts;
9 }
10
11 interface Engine
12 {
13 public function __construct(Context $context);
14
15 public function __invoke($source, $this_args, array $options=array());
16 }