0

Please help me

in C:\xampp\htdocs\project_sms\src\Com\AkSolutions\Sms\UserBundle\Form\Type\UserSendMessageType.php at line 55

$form = $event->getForm();
$form->getData()->setFromUserId($this->user->getId());
$form->getData()->setFromName($this->userProfile->getFirstName()."".$this->userProfile->getLastName());
$form->getData()->setUserType($this->userType);
$form->getData()->setReadStatus(false);
$form->getData()->setDeleteStatus(false); 
Nikolay Kostov
  • 16,433
  • 23
  • 85
  • 123
Jecintha
  • 15
  • 1
  • 1
  • 5

1 Answers1

0

The problem seems to be here:

$this->userProfile->getFirstName()

specifically the error is telling you that this expression:

$this->userProfile

is null

Trevor Brown
  • 169
  • 3