mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-02-03 21:00:06 +08:00
31 lines
450 B
Plaintext
31 lines
450 B
Plaintext
|
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){
|
||
|
}
|
||
|
}
|