File tree Expand file tree Collapse file tree 2 files changed +13
-1
lines changed Expand file tree Collapse file tree 2 files changed +13
-1
lines changed Original file line number Diff line number Diff line change 1+ includes:
2+ - vendor/calebdw/larastan/extension.neon
13parameters:
24 level: 8
35 paths:
46 - src
57 - workbench/app
8+ - workbench/database
Original file line number Diff line number Diff line change 44
55namespace CalebDW \SqlEntities \Facades ;
66
7+ use CalebDW \SqlEntities \SqlEntity as SqlEntityBase ;
78use CalebDW \SqlEntities \SqlEntityManager ;
89use Illuminate \Support \Facades \Facade ;
910use Override ;
1011
11- /** @mixin SqlEntityManager */
12+ /**
13+ * @method static SqlEntityBase get(string $name)
14+ * @method static void create(SqlEntityBase|class-string<SqlEntityBase>|string $entity)
15+ * @method static void drop(SqlEntityBase|class-string<SqlEntityBase>|string $entity)
16+ * @method static void createAll(?string $type = null, ?string $connection = null)
17+ * @method static void dropAll(?string $type = null, ?string $connection = null)
18+ *
19+ * @see SqlEntityManager
20+ */
1221class SqlEntity extends Facade
1322{
1423 #[Override]
You can’t perform that action at this time.
0 commit comments