We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3349f6e commit 2971158Copy full SHA for 2971158
src/Import.php
@@ -3,6 +3,7 @@
3
namespace Nicklayb\LaravelDbImport;
4
5
use DB;
6
+use Str;
7
8
/**
9
* Class for Import process
@@ -207,7 +208,7 @@ public function hasTableFilter($table)
207
208
*/
209
public function getFilterName($table)
210
{
- return 'filter'.studly_case($table);
211
+ return 'filter'. Str::studly($table);
212
}
213
214
@@ -354,7 +355,7 @@ public function hasLastTables()
354
355
356
public function getManipulationName($table)
357
- return 'manipulate'.studly_case($table);
358
+ return 'manipulate'.Str::studly($table);
359
360
361
0 commit comments