for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace OroCRM\Bundle\SalesBundle\Tests\Unit\Fixture;
use OroCRM\Bundle\SalesBundle\Entity\Lead;
class LeadStub extends Lead
{
/**
* @var object
*/
protected $source;
protected $status;
* @return object
public function getStatus()
return $this->status;
}
* @param object $status
public function setStatus($status)
$this->status = $status;
public function getSource()
return $this->source;
* @param object $source
public function setSource($source)
$this->source = $source;