19 lines
341 B
PHP
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;
|
|
}
|
|
} |