/**
* receiveData
*
* This method accepts an array
* of data that is then used within the run
* function.
*
* The data should look like this:
* <code>
* $data = [
* 'research' => \Entity\Research::findOne('rur'),
* 'foo' => 'bar',
* 'toast' => [1,2,3,4,5]
* ];
* </code>
*
* @param Array $data Array of values to be used by the run method.
*
* @return Bool
*/