/**
  * Converts an object to an array containing all of its private, protected
  * and public properties.
  *
  * @param  object $object
  * @return array
  */
 protected function toArray($object)
 {
     $array = parent::toArray($object);
     unset($array['file'], $array['line'], $array['trace'], $array['string'], $array['xdebug_message']);
     return $array;
 }
 /**
  * Converts an object to an array containing all of its private, protected
  * and public properties.
  *
  * @param  object $object
  *
  * @return array
  */
 protected function toArray($object)
 {
     $array = parent::toArray($object);
     unset($array['__phpunit_invocationMocker']);
     return $array;
 }