Completed
Push — master ( cc0286...061e94 )
by Thomas
15:16 queued 10:10
created

ActivityObjectDomain   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 11
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 2

Importance

Changes 2
Bugs 0 Features 0
Metric Value
wmc 1
c 2
b 0
f 0
lcom 0
cbo 2
dl 0
loc 11
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A applyFilter() 0 2 1
1
<?php
2
namespace keeko\core\domain;
3
4
use keeko\framework\foundation\AbstractDomain;
5
use keeko\core\model\ActivityObjectQuery;
6
use keeko\core\domain\base\ActivityObjectDomainTrait;
7
8
/**
9
 */
10
class ActivityObjectDomain extends AbstractDomain {
11
12
	use ActivityObjectDomainTrait;
13
14
	/**
15
	 * @param ActivityObjectQuery $query
16
	 * @param mixed $filter
17
	 */
18
	protected function applyFilter(ActivityObjectQuery $query, $filter) {
2 ignored issues
show
Unused Code introduced by
The parameter $query is not used and could be removed.

This check looks from parameters that have been defined for a function or method, but which are not used in the method body.

Loading history...
Unused Code introduced by
The parameter $filter is not used and could be removed.

This check looks from parameters that have been defined for a function or method, but which are not used in the method body.

Loading history...
19
	}
20
}
21