Your IP : 216.73.216.81


Current Path : /srv/web/sites/trentinoplant.it/httpdocs/vendor1/codeception/stub/src/Stub/
Upload File :
Current File : /srv/web/sites/trentinoplant.it/httpdocs/vendor1/codeception/stub/src/Stub/ConsecutiveMap.php

<?php

declare(strict_types=1);

namespace Codeception\Stub;

/**
 * Holds matcher and value of mocked method
 */
class ConsecutiveMap
{
    private array $consecutiveMap = [];

    public function __construct(array $consecutiveMap)
    {
        $this->consecutiveMap = $consecutiveMap;
    }

    public function getMap(): array
    {
        return $this->consecutiveMap;
    }
}