for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Dock\IO\Process\WaitStrategy;
use Symfony\Component\Process\Process;
class BasicWait implements WaitStrategy
{
/**
* {@inheritdoc}
*/
public function wait(Process $process)
$process->wait();
}