Skip to content

Commit

Permalink
Code formatting [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
cedx committed Oct 17, 2024
1 parent 610bc1f commit 5c0012d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/php_minifier/FastTransformer.hx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package php_minifier;
import asys.FileSystem;
import js.Node;
import js.node.ChildProcess;
import js.node.child_process.ChildProcess as ChildProcessObject;
import js.node.child_process.ChildProcess as Process;
import js.node.Net;
import tink.QueryString;
import tink.http.Client;
Expand All @@ -22,7 +22,7 @@ class FastTransformer implements Transformer {
var port = -1;

/** The underlying PHP process. **/
var process: Null<ChildProcessObject> = null;
var process: Null<Process> = null;

/** Creates a new fast transformer. **/
public function new(executable = "php")
Expand Down

0 comments on commit 5c0012d

Please sign in to comment.