You are specifying dash as the callback in the wrong way.
This does not work:
$this->classarray = array_map($this->dash(), $data);
This does:
$this->classarray = array_map([$this, 'dash'], $data);
Read about the different forms a callback may take here.