@@ -43,7 +43,7 @@ discard block |
||
43 | 43 | */ |
44 | 44 | public function getByReference(string $reference): GroupTagCategoryModel |
45 | 45 | { |
46 | - return $this->cache->rememberForever(static::class . '@getByReference:' . $reference, function() use ($reference) { |
|
46 | + return $this->cache->rememberForever(static::class.'@getByReference:'.$reference, function() use ($reference) { |
|
47 | 47 | return $this->groupTagCategoryRepository->getByReference($reference); |
48 | 48 | }); |
49 | 49 | } |
@@ -56,7 +56,7 @@ discard block |
||
56 | 56 | */ |
57 | 57 | public function getById(int $id): GroupTagCategoryModel |
58 | 58 | { |
59 | - return $this->cache->rememberForever(static::class . '@getById:' . $id, function() use ($id) { |
|
59 | + return $this->cache->rememberForever(static::class.'@getById:'.$id, function() use ($id) { |
|
60 | 60 | return $this->groupTagCategoryRepository->getById($id); |
61 | 61 | }); |
62 | 62 | } |
@@ -43,7 +43,7 @@ discard block |
||
43 | 43 | */ |
44 | 44 | public function getByReference(string $reference): PositionTagCategoryModel |
45 | 45 | { |
46 | - return $this->cache->rememberForever(static::class . '@getByReference:' . $reference, function() use ($reference) { |
|
46 | + return $this->cache->rememberForever(static::class.'@getByReference:'.$reference, function() use ($reference) { |
|
47 | 47 | return $this->positionTagCategoryRepository->getByReference($reference); |
48 | 48 | }); |
49 | 49 | } |
@@ -56,7 +56,7 @@ discard block |
||
56 | 56 | */ |
57 | 57 | public function getById(int $id): PositionTagCategoryModel |
58 | 58 | { |
59 | - return $this->cache->rememberForever(static::class . '@getById:' . $id, function() use ($id) { |
|
59 | + return $this->cache->rememberForever(static::class.'@getById:'.$id, function() use ($id) { |
|
60 | 60 | return $this->positionTagCategoryRepository->getById($id); |
61 | 61 | }); |
62 | 62 | } |
@@ -44,7 +44,7 @@ discard block |
||
44 | 44 | */ |
45 | 45 | public function getTagByFullReference(string $reference): \BristolSU\ControlDB\Contracts\Models\Tags\UserTag |
46 | 46 | { |
47 | - return $this->cache->rememberForever(static::class . '@getTagByFullReference:' . $reference, function() use ($reference) { |
|
47 | + return $this->cache->rememberForever(static::class.'@getTagByFullReference:'.$reference, function() use ($reference) { |
|
48 | 48 | return $this->userTagRepository->getTagByFullReference($reference); |
49 | 49 | }); |
50 | 50 | } |
@@ -57,7 +57,7 @@ discard block |
||
57 | 57 | */ |
58 | 58 | public function getById(int $id): \BristolSU\ControlDB\Contracts\Models\Tags\UserTag |
59 | 59 | { |
60 | - return $this->cache->rememberForever(static::class . '@getById:' . $id, function() use ($id) { |
|
60 | + return $this->cache->rememberForever(static::class.'@getById:'.$id, function() use ($id) { |
|
61 | 61 | return $this->userTagRepository->getById($id); |
62 | 62 | }); |
63 | 63 | } |
@@ -94,7 +94,7 @@ discard block |
||
94 | 94 | */ |
95 | 95 | public function allThroughTagCategory(\BristolSU\ControlDB\Contracts\Models\Tags\UserTagCategory $userTagCategory): Collection |
96 | 96 | { |
97 | - return $this->cache->rememberForever(static::class . '@allThroughTagCategory:' . $userTagCategory->id(), function() use ($userTagCategory) { |
|
97 | + return $this->cache->rememberForever(static::class.'@allThroughTagCategory:'.$userTagCategory->id(), function() use ($userTagCategory) { |
|
98 | 98 | return $this->userTagRepository->allThroughTagCategory($userTagCategory); |
99 | 99 | }); |
100 | 100 | } |
@@ -43,7 +43,7 @@ discard block |
||
43 | 43 | */ |
44 | 44 | public function getByReference(string $reference): UserTagCategoryModel |
45 | 45 | { |
46 | - return $this->cache->rememberForever(static::class . '@getByReference:' . $reference, function() use ($reference) { |
|
46 | + return $this->cache->rememberForever(static::class.'@getByReference:'.$reference, function() use ($reference) { |
|
47 | 47 | return $this->userTagCategoryRepository->getByReference($reference); |
48 | 48 | }); |
49 | 49 | } |
@@ -56,7 +56,7 @@ discard block |
||
56 | 56 | */ |
57 | 57 | public function getById(int $id): UserTagCategoryModel |
58 | 58 | { |
59 | - return $this->cache->rememberForever(static::class . '@getById:' . $id, function() use ($id) { |
|
59 | + return $this->cache->rememberForever(static::class.'@getById:'.$id, function() use ($id) { |
|
60 | 60 | return $this->userTagCategoryRepository->getById($id); |
61 | 61 | }); |
62 | 62 | } |
@@ -43,7 +43,7 @@ discard block |
||
43 | 43 | */ |
44 | 44 | public function getByReference(string $reference): RoleTagCategoryModel |
45 | 45 | { |
46 | - return $this->cache->rememberForever(static::class . '@getByReference:' . $reference, function() use ($reference) { |
|
46 | + return $this->cache->rememberForever(static::class.'@getByReference:'.$reference, function() use ($reference) { |
|
47 | 47 | return $this->roleTagCategoryRepository->getByReference($reference); |
48 | 48 | }); |
49 | 49 | } |
@@ -56,7 +56,7 @@ discard block |
||
56 | 56 | */ |
57 | 57 | public function getById(int $id): RoleTagCategoryModel |
58 | 58 | { |
59 | - return $this->cache->rememberForever(static::class . '@getById:' . $id, function() use ($id) { |
|
59 | + return $this->cache->rememberForever(static::class.'@getById:'.$id, function() use ($id) { |
|
60 | 60 | return $this->roleTagCategoryRepository->getById($id); |
61 | 61 | }); |
62 | 62 | } |
@@ -33,7 +33,7 @@ discard block |
||
33 | 33 | */ |
34 | 34 | public function getById(int $id): UserModel |
35 | 35 | { |
36 | - return $this->cache->rememberForever(static::class . '@getById:' . $id, function() use ($id) { |
|
36 | + return $this->cache->rememberForever(static::class.'@getById:'.$id, function() use ($id) { |
|
37 | 37 | return $this->userRepository->getById($id); |
38 | 38 | }); |
39 | 39 | } |
@@ -46,7 +46,7 @@ discard block |
||
46 | 46 | */ |
47 | 47 | public function getByDataProviderId(int $dataProviderId): UserModel |
48 | 48 | { |
49 | - return $this->cache->rememberForever(static::class . '@getByDataProviderId:' . $dataProviderId, function() use ($dataProviderId) { |
|
49 | + return $this->cache->rememberForever(static::class.'@getByDataProviderId:'.$dataProviderId, function() use ($dataProviderId) { |
|
50 | 50 | return $this->userRepository->getByDataProviderId($dataProviderId); |
51 | 51 | }); |
52 | 52 | } |
@@ -102,7 +102,7 @@ discard block |
||
102 | 102 | */ |
103 | 103 | public function count(): int |
104 | 104 | { |
105 | - return $this->cache->rememberForever(static::class . '@count', function() { |
|
105 | + return $this->cache->rememberForever(static::class.'@count', function() { |
|
106 | 106 | return $this->userRepository->count(); |
107 | 107 | }); |
108 | 108 | } |
@@ -34,7 +34,7 @@ discard block |
||
34 | 34 | */ |
35 | 35 | public function getById(int $id): PositionModel |
36 | 36 | { |
37 | - return $this->cache->rememberForever(static::class . '@getById:' . $id, function() use ($id) { |
|
37 | + return $this->cache->rememberForever(static::class.'@getById:'.$id, function() use ($id) { |
|
38 | 38 | return $this->positionRepository->getById($id); |
39 | 39 | }); |
40 | 40 | } |
@@ -47,7 +47,7 @@ discard block |
||
47 | 47 | */ |
48 | 48 | public function getByDataProviderId(int $dataProviderId): PositionModel |
49 | 49 | { |
50 | - return $this->cache->rememberForever(static::class . '@getByDataProviderId:' . $dataProviderId, function() use ($dataProviderId) { |
|
50 | + return $this->cache->rememberForever(static::class.'@getByDataProviderId:'.$dataProviderId, function() use ($dataProviderId) { |
|
51 | 51 | return $this->positionRepository->getByDataProviderId($dataProviderId); |
52 | 52 | }); |
53 | 53 | } |
@@ -103,7 +103,7 @@ discard block |
||
103 | 103 | */ |
104 | 104 | public function count(): int |
105 | 105 | { |
106 | - return $this->cache->rememberForever(static::class . '@count', function() { |
|
106 | + return $this->cache->rememberForever(static::class.'@count', function() { |
|
107 | 107 | return $this->positionRepository->count(); |
108 | 108 | }); |
109 | 109 | } |
@@ -33,7 +33,7 @@ discard block |
||
33 | 33 | */ |
34 | 34 | public function getById(int $id): GroupModel |
35 | 35 | { |
36 | - return $this->cache->rememberForever(static::class . '@getById:' . $id, function() use ($id) { |
|
36 | + return $this->cache->rememberForever(static::class.'@getById:'.$id, function() use ($id) { |
|
37 | 37 | return $this->groupRepository->getById($id); |
38 | 38 | }); |
39 | 39 | } |
@@ -46,7 +46,7 @@ discard block |
||
46 | 46 | */ |
47 | 47 | public function getByDataProviderId(int $dataProviderId): GroupModel |
48 | 48 | { |
49 | - return $this->cache->rememberForever(static::class . '@getByDataProviderId:' . $dataProviderId, function() use ($dataProviderId) { |
|
49 | + return $this->cache->rememberForever(static::class.'@getByDataProviderId:'.$dataProviderId, function() use ($dataProviderId) { |
|
50 | 50 | return $this->groupRepository->getByDataProviderId($dataProviderId); |
51 | 51 | }); |
52 | 52 | } |
@@ -102,7 +102,7 @@ discard block |
||
102 | 102 | */ |
103 | 103 | public function count(): int |
104 | 104 | { |
105 | - return $this->cache->rememberForever(static::class . '@count', function() { |
|
105 | + return $this->cache->rememberForever(static::class.'@count', function() { |
|
106 | 106 | return $this->groupRepository->count(); |
107 | 107 | }); |
108 | 108 | } |
@@ -32,7 +32,7 @@ |
||
32 | 32 | */ |
33 | 33 | public function getById(int $id): \BristolSU\ControlDB\Contracts\Models\DataPosition |
34 | 34 | { |
35 | - return $this->cache->rememberForever(static::class . '@getById:' . $id, function() use ($id) { |
|
35 | + return $this->cache->rememberForever(static::class.'@getById:'.$id, function() use ($id) { |
|
36 | 36 | return $this->dataPositionRepository->getById($id); |
37 | 37 | }); |
38 | 38 | } |