mirror of
https://github.com/php-win-ext/phpy.git
synced 2026-04-27 02:18:07 +02:00
d85e2416de
This reverts commit bd0a74f426.
84 lines
1.1 KiB
PHP
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
|
|
{
|
|
|
|
}
|
|
}
|