getCaseSensitive() 공개 메소드

public getCaseSensitive ( ) : boolean
리턴 boolean whether the keys are case-sensitive. Defaults to false.
예제 #1
0
 public function testGetCaseSensitive()
 {
     $collection = new TAttributeCollection();
     $collection->setCaseSensitive(false);
     self::assertEquals(false, $collection->getCaseSensitive());
     $collection->setCaseSensitive(true);
     self::assertEquals(true, $collection->getCaseSensitive());
 }