Skip to content

Commit

Permalink
Updates default port
Browse files Browse the repository at this point in the history
  • Loading branch information
aschmelyun committed Jul 3, 2023
1 parent 11ca00c commit 562e5e4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Commands/Serve.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import path from 'path';
export default class Serve {
static async run(options) {
const phpVersion = options['--php'] || options['-P'] || '8.2';
const port = options['--port'] || options['-p'] || 3000;
const port = options['--port'] || options['-p'] || 1738;

const servePhp = await NodePHP.load(phpVersion, {
requestHandler: {
Expand Down

0 comments on commit 562e5e4

Please sign in to comment.