Prado\Collections\TAttributeCollection::getCaseSensitive PHP 메소드

getCaseSensitive() 공개 메소드

public getCaseSensitive ( ) : boolean
리턴 boolean whether the keys are case-sensitive. Defaults to false.
    public function getCaseSensitive()
    {
        return $this->_caseSensitive;
    }

Usage Example

예제 #1
0
 public function testGetCaseSensitive()
 {
     $collection = new TAttributeCollection();
     $collection->setCaseSensitive(false);
     self::assertEquals(false, $collection->getCaseSensitive());
     $collection->setCaseSensitive(true);
     self::assertEquals(true, $collection->getCaseSensitive());
 }