for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Behat\Sf2DemoBundle\Service;
class NameService
{
/**
* @var string
*/
private $name;
* @param string $name
public function setName($name)
$this->name = $name;
}
* @return string
public function getName()
return $this->name;