protected function createMatcher()
 {
     return \Hamcrest\Core\IsSame::sameInstance(new \stdClass());
 }
 public function __construct($value)
 {
     parent::__construct($value);
     $this->_value = $value;
 }
 /**
  * Creates a new instance of IsSame.
  *
  * @param mixed $object
  *   The predicate evaluates to true only when the argument is
  *   this object.
  *
  * @return \Hamcrest\Core\IsSame
  */
 function sameInstance($object)
 {
     return \Hamcrest\Core\IsSame::sameInstance($object);
 }