getCaseSensitive() public method

public getCaseSensitive ( ) : boolean
return boolean whether the keys are case-sensitive. Defaults to false.
Exemplo n.º 1
0
 public function testGetCaseSensitive()
 {
     $collection = new TAttributeCollection();
     $collection->setCaseSensitive(false);
     self::assertEquals(false, $collection->getCaseSensitive());
     $collection->setCaseSensitive(true);
     self::assertEquals(true, $collection->getCaseSensitive());
 }