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;
11:
12: use rsanchez\Deep\App\AbstractProxy;
13:
14: /**
15: * Static proxy to the Entry model
16: */
17: class Entries extends AbstractProxy
18: {
19: /**
20: * {@inheritdoc}
21: */
22: protected static function getAccessor()
23: {
24: return 'Entry';
25: }
26: }
27: