for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Docker\Stream;
/**
* Represent a stream when building a dockerfile
*
* Callable(s) passed to this stream will take a BuildInfo object as the first argument
*/
class BuildStream extends MultiJsonStream
{
* [@inheritdoc}
protected function getDecodeClass()
return 'Docker\API\Model\BuildInfo';
}