getName() 공개 메소드

public getName ( ) : string
리턴 string
예제 #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;
 }
예제 #2
0
 public function isAccepted(Test $test)
 {
     return 1 === preg_match($this->regexp, $test->getName());
 }