Files
archived-php-langspec/tests/interfaces/arrayaccess.phpt
2015-01-07 22:42:29 +01:00

22 lines
488 B
PHP

--TEST--
PHP Spec test generated from ./interfaces/arrayaccess.php
--FILE--
<?php
/*
+-------------------------------------------------------------+
| Copyright (c) 2014 Facebook, Inc. (http://www.facebook.com) |
+-------------------------------------------------------------+
*/
error_reporting(-1);
interface XArrayAccess
{
function offsetExists ($offset);
function offsetGet ($offset);
function offsetSet ($offset, $value);
function offsetUnset ($offset);
}
--EXPECT--