Conditions | 3 |
Paths | 2 |
Total Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 12 |
Changes | 0 |
1 | <?php |
||
22 | public function serialize( $object ) { |
||
23 | if ( !( $object instanceof SimpleItem ) && !( $object instanceof SimpleProperty ) ) { |
||
24 | throw new UnsupportedObjectException( $object, 'Can only serialize instances of SimpleItem or SimpleProperty' ); |
||
25 | } |
||
26 | |||
27 | $this->entity = $object; |
||
28 | |||
29 | return $this->serializeItem(); |
||
30 | } |
||
31 | |||
50 | } |