Ejemplo n.º 1
0
 /**
  *
  * @see Vatsimphp\Filter.AbstractFilter::current()
  */
 public function current()
 {
     $value = parent::current();
     return trim(substr($value, strlen($this->filter)));
 }
Ejemplo n.º 2
0
 /**
  *
  * @see Vatsimphp\Filter.AbstractFilter::current()
  */
 public function current()
 {
     $value = trim(substr(parent::current(), strlen($this->filter)));
     return $this->convertToArray($value, ':');
 }