File tree Expand file tree Collapse file tree 1 file changed +33
-0
lines changed Expand file tree Collapse file tree 1 file changed +33
-0
lines changed Original file line number Diff line number Diff line change
1
+ <?php
2
+ /**
3
+ * This file is part of webman.
4
+ *
5
+ * Licensed under The MIT License
6
+ * For full copyright and license information, please see the MIT-LICENSE.txt
7
+ * Redistributions of files must retain the above copyright notice.
8
+ *
9
+ * @author walkor<[email protected] >
10
+ * @copyright walkor<[email protected] >
11
+ * @link http://www.workerman.net/
12
+ * @license http://www.opensource.org/licenses/mit-license.php MIT License
13
+ */
14
+
15
+ namespace support ;
16
+
17
+ use Closure ;
18
+ use Illuminate \Contracts \Pagination \CursorPaginator ;
19
+ use Illuminate \Contracts \Pagination \LengthAwarePaginator ;
20
+ use Illuminate \Contracts \Pagination \Paginator ;
21
+ use MongoDB \Laravel \Eloquent \Model as BaseModel ;
22
+ use Illuminate \Database \Query \Builder ;
23
+ use Illuminate \Database \Query \Expression ;
24
+ use Illuminate \Database \Query \Grammars \Grammar ;
25
+ use Illuminate \Database \Query \Processors \Processor ;
26
+ use Illuminate \Support \Collection ;
27
+ use Illuminate \Support \LazyCollection ;
28
+
29
+ require_once __DIR__ . '/../Initializer.php ' ;
30
+ class MongoModel extends BaseModel
31
+ {
32
+
33
+ }
You can’t perform that action at this time.
0 commit comments