ManaPHP framework
ManaPHP framework
```php
```php abstract class Model implements ModelInterface, Serializable, ArrayAccess, JsonSerializable { ... /** * @param string $offset =array_keys(get_object_vars(new static))[$i] * * @return mixed */ public function offsetGet($offset); /** * Allows to...
 can ignore not public property?

can you provide **class properties** provider? ```php class Test{ public $a; pubic $b; pubic $c; } ```` **class properties** provide generate like **lookup_strings** looks like ["a","b","c"];
./tcp2ws 22 50022 Proxy with Nginx: location /ws/ { proxy_pass http://192.168.1.2:50022/; proxy_read_timeout 3600; proxy_http_version 1.1; proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection "Upgrade"; proxy_set_header X-Forwarded-For $remote_addr; access_log off; }