tolerant-php-parser/php-langspec/tests/classes/MyCollection.inc

16 строки
304 B
PHP

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