Skip to content

Commit 283088d

Browse files
committed
Fix bug in create service command
1 parent 1549f67 commit 283088d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Commands/Services/CreateServiceCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ protected function execute(InputInterface $input, OutputInterface $output)
9898

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

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

103103
switch (true):
104104
case $template->isGitResource():

0 commit comments

Comments
 (0)