Skip to content

Commit fa90a41

Browse files
committed
Return exit code from runWithStringInput
1 parent 7a73d75 commit fa90a41

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,17 @@
11
Changelog
22
=========
33

4+
45
dev-master
56
----------
67

8+
### Bug fixes
9+
10+
- [embedded] No exit code returned
11+
12+
beta1
13+
-----
14+
715
### BC Break
816

917
- [DoctrinePhpcrBundle] Shell must now be initiated in a different way in

src/PHPCR/Shell/Console/Application/EmbeddedApplication.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,6 @@ protected function getDefaultCommand()
5656
public function runWithStringInput($stringInput, OutputInterface $output)
5757
{
5858
$input = new StringInput($stringInput);
59-
$this->run($input, $output);
59+
return $this->run($input, $output);
6060
}
6161
}

0 commit comments

Comments
 (0)