Exemplo n.º 1
0
 /**
  * Matches the $view against a set of matchers.
  *
  * @param \EzSystems\EzSupportToolsBundle\View\SystemInfoView $view
  *
  * @return bool
  */
 public function match(View $view)
 {
     if (!$view instanceof SystemInfoView) {
         return false;
     }
     return $this->toIdentifier($view->getInfo()) === $this->identifier;
 }