示例#1
0
 /**
  * Should return true, if the given filter
  * does not match
  *
  * @param string $property The name of the property
  * @return bool
  */
 public function filter($property)
 {
     return (
         parent::filter($property) &&
         $property !== 'facility'
     );
 }
示例#2
0
 /**
  * Should return true, if the given filter
  * does not match
  *
  * @param string $property The name of the property
  * @return bool
  */
 public function filter($property)
 {
     return (
         parent::filter($property)
     );
 }