| Conditions | 2 |
| Paths | 2 |
| Total Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 5 |
| CRAP Score | 2 |
| Changes | 0 | ||
| 1 | <?php |
||
| 30 | 2 | public function serialize( $object ) { |
|
| 31 | 2 | if ( !( $object instanceof SimpleProperty ) ) { |
|
| 32 | 1 | throw new UnsupportedObjectException( $object, 'Can only serialize instances of SimpleProperty' ); |
|
| 33 | } |
||
| 34 | |||
| 35 | 1 | $this->property = $object; |
|
| 36 | |||
| 37 | 1 | return $this->serializeProperty(); |
|
| 38 | } |
||
| 39 | |||
| 48 | } |