| Conditions | 1 |
| Paths | 1 |
| Total Lines | 14 |
| Code Lines | 12 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 22 | public function __construct() |
||
| 23 | { |
||
| 24 | $this->register(new TypeComparator); |
||
| 25 | $this->register(new StrictScalarComparator()); |
||
| 26 | $this->register(new NumericComparator); |
||
| 27 | $this->register(new DoubleComparator); |
||
| 28 | $this->register(new ArrayComparator); |
||
| 29 | $this->register(new ResourceComparator); |
||
| 30 | $this->register(new ObjectComparator); |
||
| 31 | $this->register(new ExceptionComparator); |
||
| 32 | $this->register(new SplObjectStorageComparator); |
||
| 33 | $this->register(new DOMNodeComparator); |
||
| 34 | $this->register(new DateTimeComparator); |
||
| 35 | } |
||
| 36 | } |