equals() public method

public equals ( Scope $that )
$that Scope
Example #1
0
 public function testSerialize()
 {
     $s = new Scope(array('foo', 'bar', 'baz'));
     $t = new Scope($s->toArray());
     $this->assertTrue($t->equals($s));
 }