mirror of
https://github.com/php/php-langspec.git
synced 2026-03-24 15:22:08 +01:00
22 lines
488 B
PHP
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--
|