for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace PhpAbac\Example;
class Country
{
/** @var string **/
protected $name;
protected $code;
/**
* @param string $name
* @return \PhpAbac\Example\Country
*/
public function setName($name)
$this->name = $name;
return $this;
}
* @return string
public function getName()
return $this->name;
* @param string $code
public function setCode($code)
$this->code = $code;
public function getCode()
return $this->code;