1: <?php
2:
3: /**
4: * Deep
5: *
6: * @package rsanchez\Deep
7: * @author Rob Sanchez <info@robsanchez.com>
8: */
9:
10: namespace rsanchez\Deep\App\EE;
11:
12: use rsanchez\Deep\Deep;
13: use rsanchez\Deep\App\AbstractProxy as BaseProxy;
14:
15: /**
16: * Static proxy to the IoC container
17: */
18: abstract class AbstractProxy extends BaseProxy
19: {
20: /**
21: * Set Eloquent to use CodeIgniter's DB connection
22: *
23: * Set Deep to use upload prefs from config.php,
24: * rather than from DB, if applicable.
25: *
26: * @return void
27: */
28: protected static function boot()
29: {
30: Deep::bootEE(\ee());
31: }
32: }
33: