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(array($this, 'dash'), $data);
Read about the different forms a callback may take here.