for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Copyright
*/
namespace Hexarchium\CoreDomain\Model\Model\Entity;
use Hexarchium\CoreDomain\Aggregate\AbstractAggregateRoot;
use Hexarchium\CoreDomain\Model\Model\ModelId;
class Model extends AbstractAggregateRoot
{
* Model constructor.
*
* @param ModelId $id
public function __construct(ModelId $id)
parent::__construct($id);
}