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

19 lines
230 B
PHP

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