Skip to content

Commit 40fe570

Browse files
committed
Update README.md
1 parent df4c980 commit 40fe570

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -275,18 +275,18 @@ $javaClass = new JavaClass(
275275

276276
|Options | Value | Default | Description |Targeted |
277277
|:-------------:|:-------------:|:-------------:|:-------------:|:-------------:|
278-
| entrypoint | ?string | null | Specify to run entrypoint in JAR. | JavaArchive |
278+
| entrypoint | string or null | null | Specify to run entrypoint in JAR. | JavaArchive |
279279
| max_stack_exceeded | integer | 9999 | Execute more than the specified number of times be stopped the operation. | JavaClass |
280280
| max_execution_time | integer | 30 | This option control max execution times. | JavaClass |
281281
| strict | boolean | true | If strict mode is `true` then execute method, variables and so on with strict. But if strict mode is `false` then execute ambiguously method, variable and etc in PHPJava. | Both |
282282
| preload | boolean | false | preload is pre-read JavaClass in emulating JAR. This may be a lot of consuming memories by large JAR file. but JavaArchive use defer loading if this option is false. | JavaArchive |
283283
| validation.method.arguments_count_only | boolean | false | If this mode `true` then ClassResolver validate arguments size only. | JavaClass |
284284
| operations.enable_trace | boolean | true | Store operations history into memory if this is enabled. | JavaClass |
285-
| operations.temporary_code_stream | string | php://memory | TBD | JavaClass |
286-
| log.level | int | Logger::EMERGENCY | TBD | Both |
287-
| log.path | string | php://stdout | TBD | Both |
288-
| dry_run.* | boolean | false | TBD (Reserved Option) | TBD |
289-
| mode | enum | Mode::EXPERIMENTAL | TBD (Reserved Option) | TBD |
285+
| operations.temporary_code_stream | string | php://memory | Operation code will be outputted to temporary stream. Change temporary stream if your code is heavy. You'll get happy. | JavaClass |
286+
| log.level | int | Logger::EMERGENCY | This option set `Monolog` output level. | Both |
287+
| log.path | string or resource | php://stdout | This option set `Monolog` output destination. | Both |
288+
| dry_run (Not Implemented) | boolean | false | Dry-run denotes to check JavaClass/JavaArchive structures only. If this options is `true` then to run dry-run mode. | Both |
289+
| env (Not Implemented) | enum | Environment::EXPERIMENTAL | Set your environment. | Both |
290290

291291

292292
- For example in JavaClass:

0 commit comments

Comments
 (0)