<?phpnamespaceCodeception\Stub;/** * Holds matcher and value of mocked method */classConsecutiveMap{private$consecutiveMap=[];publicfunction__construct(array$consecutiveMap){$this->consecutiveMap=$consecutiveMap;}publicfunctiongetMap(){return$this->consecutiveMap;}}