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
Raw Normal View History

2018-03-20 14:44:25 +00:00
<?php
/**
* A pair with two elements.
*/
class Pair
{
public $first;
public $second;
/**
* Constructor.
*
* @param $first
* @param $second
*/
function __construct($first, $second) {}
}