Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

V6.0 #173

Closed
wants to merge 3 commits into from
Closed

V6.0 #173

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,6 @@
# Ignore project files.
/Dockerfile.bak
/html/*

/.php_cs.cache
/.idea
32 changes: 9 additions & 23 deletions src/core/Constant.php
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,8 @@ class Constant

public const OPTION_AIO_MAX_IDLE_TIME = 'aio_max_idle_time';

public const OPTION_IOURING_ENTRIES = 'iouring_entries';

public const OPTION_ENABLE_SIGNALFD = 'enable_signalfd';

public const OPTION_WAIT_SIGNAL = 'wait_signal';
Expand Down Expand Up @@ -281,36 +283,16 @@ class Constant

public const OPTION_UPLOAD_TMP_DIR = 'upload_tmp_dir';

public const OPTION_HOST = 'host';

public const OPTION_PORT = 'port';

public const OPTION_SSL = 'ssl';

public const OPTION_USER = 'user';

public const OPTION_PASSWORD = 'password';

public const OPTION_DATABASE = 'database';

public const OPTION_CHARSET = 'charset';

public const OPTION_STRICT_TYPE = 'strict_type';

public const OPTION_FETCH_MODE = 'fetch_mode';

public const OPTION_ENABLE_MESSAGE_BUS = 'enable_message_bus';

public const OPTION_MAX_PACKAGE_SIZE = 'max_package_size';

public const OPTION_SERIALIZE = 'serialize';

public const OPTION_RECONNECT = 'reconnect';

public const OPTION_COMPATIBILITY_MODE = 'compatibility_mode';
public const OPTION_SSL = 'ssl';

public const OPTION_CHROOT = 'chroot';

public const OPTION_USER = 'user';

public const OPTION_GROUP = 'group';

public const OPTION_DAEMONIZE = 'daemonize';
Expand Down Expand Up @@ -407,6 +389,10 @@ class Constant

public const OPTION_MESSAGE_QUEUE_KEY = 'message_queue_key';

public const OPTION_BOOTSTRAP = 'bootstrap';

public const OPTION_INIT_ARGUMENTS = 'init_arguments';

public const OPTION_BACKLOG = 'backlog';

public const OPTION_KERNEL_SOCKET_RECV_BUFFER_SIZE = 'kernel_socket_recv_buffer_size';
Expand Down