for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Germania\Salesmen;
trait SalesmanIdProviderTrait
{
/**
* @var mixed
*/
public $salesman_id;
* Returns the Salesman ID.
*
* @return int|string
public function getSalesmanId()
return $this->salesman_id;
}