Conditions | 5 |
Paths | 4 |
Total Lines | 13 |
Lines | 13 |
Ratio | 100 % |
Changes | 0 |
1 | <?php |
||
71 | View Code Duplication | public function isEmpty() { |
|
72 | if ($this->href !== null) { |
||
73 | return false; |
||
74 | } |
||
75 | if ($this->meta !== null && $this->meta->isEmpty() === false) { |
||
76 | return false; |
||
77 | } |
||
78 | if ($this->hasAtMembers()) { |
||
79 | return false; |
||
80 | } |
||
81 | |||
82 | return true; |
||
83 | } |
||
84 | |||
100 |