1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-02-04 05:50:06 +08:00
SpaceVim/bundle/phpcomplete.vim-vim7/tests/fixtures/GenerateBuiltinClassStub/arrayaccess.txt

31 lines
450 B
Plaintext
Raw Normal View History

interface ArrayAccess {
/**
* offsetSet
*
* @return void
*/
public function offsetSet(mixed $offset, mixed $value | void){
}
/**
* offsetUnset
*
* @return void
*/
public function offsetUnset(mixed $offset | void){
}
/**
* offsetExists
*
* @return boolean
*/
public function offsetExists(mixed $offset | boolean){
}
/**
* offsetGet
*
* @return mixed
*/
public function offsetGet(mixed $offset | mixed){
}
}