Files
BiFace_Server_Lite/vendor/codeception/stub/src/Stub/ConsecutiveMap.php
2020-03-27 10:13:51 +07:00

19 lines
341 B
PHP

<?php
namespace Codeception\Stub;
/**
* Holds matcher and value of mocked method
*/
class ConsecutiveMap
{
private $consecutiveMap = [];
public function __construct(array $consecutiveMap)
{
$this->consecutiveMap = $consecutiveMap;
}
public function getMap()
{
return $this->consecutiveMap;
}
}