Code Duplication    Length = 6-8 lines in 2 locations

lib/Activity/Provider.php 2 locations

@@ 222-229 (lines=8) @@
219
					$this->l10n->t('{author} changed {member}\'s level in {circle} to %1$s', $level)
220
				);
221
222
			case 'member_request_invitation':
223
				return $this->parseMemberEvent(
224
					$circle, $member, $event,
225
					$this->l10n->t('You requested an invitation to {circle}'),
226
					$this->l10n->t(
227
						'{member} has requested an invitation into {circle}'
228
					)
229
				);
230
231
			case 'member_owner':
232
				return $this->parseMemberEvent(
@@ 231-236 (lines=6) @@
228
					)
229
				);
230
231
			case 'member_owner':
232
				return $this->parseMemberEvent(
233
					$circle, $member, $event,
234
					$this->l10n->t('You are the new owner of {circle}'),
235
					$this->l10n->t('{member} is the new owner of {circle}')
236
				);
237
		}
238
239
		throw new InvalidArgumentException();