Zend\Mvc\Controller\AbstractRestfulController::replaceList PHP Method

replaceList() public method

Not marked as abstract, as that would introduce a BC break (introduced in 2.1.0); instead, raises an exception if not implemented.
public replaceList ( mixed $data ) : mixed
$data mixed
return mixed
    public function replaceList($data)
    {
        $this->response->setStatusCode(405);
        return ['content' => 'Method Not Allowed'];
    }