We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents a0c3359 + ec5dadc commit fb82157Copy full SHA for fb82157
.github/workflows/php-workshop.yml
@@ -2,9 +2,7 @@ name: PhpWorkshop
2
3
on:
4
push:
5
- branches: [ master ]
6
pull_request:
7
8
9
jobs:
10
build:
test/Process/DockerProcessFactoryTest.php
@@ -75,7 +75,7 @@ public function testCreateWithArgs(): void
75
76
$process = $factory->create($input);
77
$cmd = "'/usr/local/bin/docker' 'compose' '-p' 'php8appreciate' '-f' '.docker/runtime/docker-compose.yml'";
78
- $cmd .= "'run' '--rm' '-w' '/solution' 'runtime' 'php' 'one' 'two'";
+ $cmd .= " 'run' '--rm' '-w' '/solution' 'runtime' 'php' 'one' 'two'";
79
static::assertSame($cmd, $process->getCommandLine());
80
static::assertSame('/docker-dir', $process->getWorkingDirectory());
81
}
0 commit comments