Files
archived-php-langspec/tests/classes/MyCollection.inc
2018-09-21 02:44:25 +02:00

16 lines
303 B
PHP

<?php
/*
+-------------------------------------------------------------+
| Copyright (c) 2014 Facebook, Inc. (http://www.facebook.com) |
+-------------------------------------------------------------+
*/
error_reporting(-1);
interface MyCollection
{
function put($item);
function get();
}