/**
  * Attempts to find an assembler matching the given data.
  *
  * @param mixed $data
  *
  * @return AssemblerAbstract
  */
 public function getAssembler($data)
 {
     return $this->assemblerFactory->get($data);
 }