for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/*
* This file is part of the PostmanGeneratorBundle package.
*
* (c) Vincent Chalamon <[email protected]>
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace PostmanGeneratorBundle\Model;
class Test
{
/**
* @var string
private $message;
private $executor;
* @param string $message
* @param string $executor
public function __construct($message = null, $executor = null)
$this->message = $message;
$this->executor = $executor;
}
* @return string
public function getMessage()
return $this->message;
public function setMessage($message)
public function getExecutor()
return $this->executor;
public function setExecutor($executor)