Mailgun\Resource\Api\Domain\CredentialResponse::__construct PHP 메소드

__construct() 개인적인 메소드

private __construct ( integer $totalCount, array $items )
$totalCount integer
$items array
    private function __construct($totalCount, array $items)
    {
        Assert::integer($totalCount);
        Assert::isArray($items);
        Assert::allIsInstanceOf($items, 'Mailgun\\Resource\\Api\\Domain\\CredentialResponseItem');
        $this->totalCount = $totalCount;
        $this->items = $items;
    }