-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSyncNamespaceHelper.php
49 lines (45 loc) · 1.28 KB
/
SyncNamespaceHelper.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<?php declare(strict_types=1);
namespace Salient\Tests\Sync;
use Salient\Contract\Sync\SyncEntityInterface;
use Salient\Contract\Sync\SyncNamespaceHelperInterface;
use Salient\Contract\Sync\SyncProviderInterface;
use Salient\Utility\Regex;
class SyncNamespaceHelper implements SyncNamespaceHelperInterface
{
public function getEntityTypeProvider(string $entityType): string
{
/** @var class-string<SyncProviderInterface> */
return Regex::replace(
[
'/(?<=\\\\)Entity(?=\\\\)/i',
'/(?<=\\\\)([^\\\\]+)$/',
'/^\\\\+/',
],
[
'Contract',
'Provides$1',
'',
],
"\\$entityType"
);
}
public function getProviderEntityTypes(string $provider): array
{
/** @var array<class-string<SyncEntityInterface>> */
return [
Regex::replace(
[
'/(?<=\\\\)Contract(?=\\\\)/i',
'/(?<=\\\\)Provides([^\\\\]+)$/',
'/^\\\\+/',
],
[
'Entity',
'$1',
'',
],
"\\$provider"
),
];
}
}