1: <?php
2:
3: /**
4: * Deep
5: *
6: * @package rsanchez\Deep
7: * @author Rob Sanchez <info@robsanchez.com>
8: */
9:
10: namespace rsanchez\Deep\Repository;
11:
12: /**
13: * Repository of all UploadPrefs
14: */
15: interface RepositoryInterface
16: {
17: /**
18: * Find an entity by ID
19: * @var int $id
20: * @return \Illuminate\Database\Eloquent\Model|null
21: */
22: public function find($id);
23: }
24: