getName() public method

public getName ( ) : string
return string
Ejemplo n.º 1
0
 public function isAccepted(Test $test)
 {
     if (in_array($test->getName(), $this->blacklist, true)) {
         return false;
     }
     if ($this->whitelist && !in_array($test->getName(), $this->whitelist, true)) {
         return false;
     }
     return true;
 }
Ejemplo n.º 2
0
 public function isAccepted(Test $test)
 {
     return 1 === preg_match($this->regexp, $test->getName());
 }