[Process] Minor README update

This commit is contained in:
Romain Neutron 2014-06-11 09:56:44 +02:00
parent 6bd80277f1
commit c7d6bbbacc

View File

@ -27,7 +27,7 @@ as it becomes available:
$process = new Process('ls -lsa');
$process->run(function ($type, $buffer) {
if ('err' === $type) {
if (Process::ERR === $type) {
echo 'ERR > '.$buffer;
} else {
echo 'OUT > '.$buffer;
@ -42,6 +42,6 @@ Resources
You can run the unit tests with the following command:
$ cd path/to/Symfony/Component/XXX/
$ cd path/to/Symfony/Component/Process/
$ composer.phar install
$ phpunit