| Conditions | 5 |
| Paths | 5 |
| Total Lines | 20 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 6 |
| CRAP Score | 5.0729 |
| Changes | 0 | ||
| 1 | <?php |
||
| 46 | public function equals(StatementObject $actor): bool |
||
| 47 | { |
||
| 48 | if (!parent::equals($actor)) { |
||
| 49 | return false; |
||
| 50 | } |
||
| 51 | 16 | ||
| 52 | /** @var Group $actor */ |
||
| 53 | 16 | ||
| 54 | 14 | if (count($this->members) !== count($actor->members)) { |
|
| 55 | return false; |
||
| 56 | } |
||
| 57 | 2 | ||
| 58 | 1 | foreach ($this->members as $member) { |
|
| 59 | if (!in_array($member, $actor->members)) { |
||
| 60 | return false; |
||
| 61 | } |
||
| 62 | } |
||
| 63 | 1 | ||
| 64 | return true; |
||
| 65 | } |
||
| 66 | } |
||
| 67 |