for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Guillermoandrae\Highrise\Models;
trait GroupAndOwnerAwareTrait
{
/**
* The account owner's ID.
*
* @var int
*/
protected $ownerId;
* The group ID.
* @var integer
protected $groupId;
* Returns the groupId.
* @return int
final public function getGroupId(): int
return $this->groupId;
}
* Returns the ownerId.
final public function getOwnerId(): int
return $this->ownerId;