for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace OceanApplications\Postmen\Models;
class Passport extends Model
{
public $number;
public $issue_date;
/**
* @param string $value
*
* @return $this
*/
public function number($value)
$this->number = strval($value);
return $this;
}
public function issue_date($value)
$this->issue_date = strval($value);