Files
phpy/stubs/phpy_object.stub.php
2024-05-28 14:38:53 +08:00

84 lines
1.1 KiB
PHP

<?php
/**
* @generate-function-entries
*/
class PyObject implements \ArrayAccess, \Iterator, \Countable
{
public function __construct(mixed $value = null)
{
}
public function __call(string $name, array $arguments): mixed
{
}
public function __get(string $name): mixed
{
}
public function __set(string $name, mixed $value): void
{
}
public function __toString(): string
{
}
public function __invoke(mixed ...$arguments): mixed
{
}
public function offsetGet(mixed $offset): mixed
{
}
public function offsetSet(mixed $offset, mixed $value): void
{
}
public function offsetUnset(mixed $offset): void
{
}
public function offsetExists(mixed $offset): bool
{
}
public function key(): mixed
{
}
public function next(): void
{
}
public function rewind(): void
{
}
public function valid(): bool
{
}
public function current(): mixed
{
}
public function count(): int
{
}
}