for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Copyright
*/
namespace Hexarchium\CoreDomain\Model\Domain\Events;
use Hexarchium\CoreDomain\Events\AbstractDomainEvent;
use Hexarchium\CoreDomain\Model\Domain\Entity\Domain;
class DomainCreated extends AbstractDomainEvent
{
* DomainCreated constructor.
*
* @param \DateTime $dateTime
* @param Domain $domain
public function __construct(\DateTime $dateTime, Domain $domain)
$domain
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.
parent::__construct($dateTime);
}
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.