File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed
packages/playground/blueprints/src/lib/steps Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -7,8 +7,8 @@ import type { StepHandler } from '.';
7
7
*
8
8
* <code>
9
9
* {
10
- * "step": "login",
11
- * "username": "admin",
10
+ * "step": "login",
11
+ * "username": "admin"
12
12
* }
13
13
* </code>
14
14
*/
Original file line number Diff line number Diff line change @@ -2,6 +2,7 @@ import type { PHPResponse } from '@php-wasm/universal';
2
2
import type { StepHandler } from '.' ;
3
3
import { logger } from '@php-wasm/logger' ;
4
4
5
+ /* eslint-disable comment-length/limit-multi-line-comments */
5
6
/**
6
7
* @inheritDoc runPHP
7
8
* @hasRunnableExample
@@ -10,12 +11,11 @@ import { logger } from '@php-wasm/logger';
10
11
* <code>
11
12
* {
12
13
* "step": "runPHP",
13
- * "code": "<?php require_once 'wordpress/wp-load.php';
14
- * wp_insert_post(array('post_title' => 'wp-load.php required for WP
15
- * functionality', 'post_status' => 'publish')); ?>"
14
+ * "code": "<?php require_once 'wordpress/wp-load.php'; wp_insert_post(array('post_title' => 'wp-load.php required for WP functionality', 'post_status' => 'publish')); ?>"
16
15
* }
17
16
* </code>
18
17
*/
18
+ /* eslint-enable comment-length/limit-multi-line-comments */
19
19
export interface RunPHPStep {
20
20
/** The step identifier. */
21
21
step : 'runPHP' ;
You can’t perform that action at this time.
0 commit comments