Skip to content

Commit

Permalink
Fix bug in create service command
Browse files Browse the repository at this point in the history
  • Loading branch information
dave-redfern committed Apr 26, 2021
1 parent 1549f67 commit 283088d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Commands/Services/CreateServiceCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ protected function execute(InputInterface $input, OutputInterface $output)

$cwd = $_SERVER['PROJECT_SERVICES_DIR'] . DIRECTORY_SEPARATOR . $name;

$project->services()->add(new Service($name, $name, null, $container, $dependencies));
$project->services()->add(new Service($name, $name, null, null, $container, $dependencies));

switch (true):
case $template->isGitResource():
Expand Down

0 comments on commit 283088d

Please sign in to comment.