Conditions | 4 |
Paths | 3 |
Total Lines | 11 |
Code Lines | 6 |
Lines | 11 |
Ratio | 100 % |
Tests | 6 |
CRAP Score | 4 |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php namespace BuildR\TestTools\Asserts; |
||
21 | 3 | View Code Duplication | protected function matches($other) { |
22 | 3 | if(!is_string($other)) { |
|
23 | 1 | return FALSE; |
|
24 | } |
||
25 | |||
26 | 2 | if(is_string($other) && defined($other)) { |
|
27 | 1 | return TRUE; |
|
28 | } |
||
29 | |||
30 | 1 | return FALSE; |
|
31 | } |
||
32 | |||
42 |