Exemple #1
0
 /**
  * @return $this
  */
 public function isArray()
 {
     return $this->addMatcher(IsArray::build());
 }
Exemple #2
0
 /**
  * @test
  */
 public function doesNotMatchOnNull()
 {
     $matcher = new IsArray();
     $this->assertThat($matcher->matches(null), $this->isFalse());
 }