示例#1
0
 function testDoubleS()
 {
     $this->assertEquals('access', Reflection::cleanProperty('access'));
 }
示例#2
0
 private function getSearchableProperty($property)
 {
     $property = Reflection::cleanProperty($property);
     foreach ($this->meta->getIndexedProperties() as $p) {
         if (Reflection::cleanProperty($p->getName()) == $property) {
             return $property;
         }
     }
     throw new Exception("Property {$property} is not indexed.");
 }