for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Sichikawa\SendgridApiBuilder\Api;
class From
{
/**
* To constructor.
* @param $email
* @param null $name
*/
public function __construct($email, $name = null)
$this->email = $email;
$this->name = $name;
}
* @var string
public $name;
public $email;
* @param string $name
* @return From
public function setName($name)
return $this;