init
This commit is contained in:
19
vendor/codeception/stub/src/Stub/ConsecutiveMap.php
vendored
Normal file
19
vendor/codeception/stub/src/Stub/ConsecutiveMap.php
vendored
Normal file
@@ -0,0 +1,19 @@
|
||||
<?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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user