Skip to content

Commit 9dd3e29

Browse files
committed
Rename
1 parent e6200c3 commit 9dd3e29

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

tests/Fakes/UpdaterFake.php

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
<?php
2+
3+
namespace distinctm\LaravelDataSync\Tests\Fakes;
4+
5+
use distinctm\LaravelDataSync\Updater;
6+
7+
class UpdaterFake extends Updater
8+
{
9+
protected function getModel(string $name)
10+
{
11+
return '\\distinctm\\LaravelDataSync\\Tests\\'.studly_case(
12+
pathinfo($name, PATHINFO_FILENAME)
13+
);
14+
}
15+
}

0 commit comments

Comments
 (0)