for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Docker\Stream;
class BuildFrame
{
/** @var string Stream message */
private $stream;
/** @var string Error message */
private $error;
/**
* @return string
*/
public function getStream()
return $this->stream;
}
* @param string $stream
public function setStream($stream)
$this->stream = $stream;
public function getError()
return $this->error;
* @param string $error
public function setError($error)
$this->error = $error;