This repository has been archived on 2020-03-30. You can view files and clone it, but cannot push or open issues or pull requests.
ext-collections/stubs/Pair.php

30 lines
405 B
PHP

<?php
/**
* A pair with two elements.
*/
class Pair
{
/**
* First value of the pair.
*
* @var mixed $first
*/
public $first;
/**
* Second value of the pair.
*
* @var mixed $second
*/
public $second;
/**
* Constructor.
*
* @param mixed $first
* @param mixed $second
*/
function __construct($first, $second) {}
}