-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathlinger_config.stub.php
46 lines (25 loc) · 1.08 KB
/
linger_config.stub.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<?php
/** @generate-legacy-arginfo */
final class Linger_Framework_Config implements \Iterator, \Traversable, \ArrayAccess, \Countable
{
public function __construct(array $config);
public function get(?string $name = null): mixed;
public function set(string $name, mixed $val): object;
public function has(string $name): bool;
public function del(string $name): object|false;
public function clear(): void;
public function count(): int;
public function rewind(): void;
public function current(): mixed;
public function next(): void;
public function valid(): bool;
public function key(): int|string|null|bool;
public function offsetGet(mixed $name): mixed;
public function offsetSet(mixed $name, mixed $value): void;
public function offsetUnSet(mixed $name): void;
public function offsetExists(mixed $name): bool;
public function __isset(string $name): bool;
public function __get(string $name): mixed;
public function __set(string $name, mixed $value): void;
public function __unset(string $name): void;
}