protected function createMatcher()
 {
     return \Hamcrest\Core\Is::is('something');
 }
 /**
  * Decorates another Matcher, retaining the behavior but allowing tests
  * to be slightly more expressive.
  *
  * For example:  assertThat($cheese, equalTo($smelly))
  *          vs.  assertThat($cheese, is(equalTo($smelly)))
  */
 function is($value)
 {
     return \Hamcrest\Core\Is::is($value);
 }
 /**
  * Decorates another Matcher, retaining the behavior but allowing tests
  * to be slightly more expressive.
  *
  * For example:  assertThat($cheese, equalTo($smelly))
  *          vs.  assertThat($cheese, is(equalTo($smelly)))
  */
 public static function is($value)
 {
     return \Hamcrest\Core\Is::is($value);
 }