Skip to content

Commit 21a340a

Browse files
committed
fix: methods should now be lowercase
1 parent cb780ae commit 21a340a

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

src/Eloquent/Builder.php

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -21,24 +21,24 @@ class Builder extends EloquentBuilder
2121
'avg',
2222
'count',
2323
'dd',
24-
'doesntExist',
24+
'doesntexist',
2525
'dump',
2626
'exists',
27-
'getBindings',
28-
'getConnection',
29-
'getGrammar',
27+
'getbindings',
28+
'getconnection',
29+
'getgrammar',
3030
'insert',
31-
'insertGetId',
32-
'insertOrIgnore',
33-
'insertUsing',
31+
'insertgetid',
32+
'insertorignore',
33+
'insertusing',
3434
'max',
3535
'min',
3636
'pluck',
3737
'pull',
3838
'push',
3939
'raw',
4040
'sum',
41-
'toSql',
41+
'tosql',
4242
];
4343

4444
/**

0 commit comments

Comments
 (0)