App\Ninja\Repositories\BaseRepository::getEventClass PHP 메소드

getEventClass() 개인적인 메소드

private getEventClass ( $entity, $type ) : string
$entity
$type
리턴 string
    private function getEventClass($entity, $type)
    {
        return 'App\\Events\\' . ucfirst($entity->getEntityType()) . 'Was' . $type;
    }