__construct() публичный Метод

Create a new event instance.
public __construct ( integer $itemId, integer $userId )
$itemId integer
$userId integer
Пример #1
0
 /**
  * Create a new event instance.
  *
  * @param string  $itemId
  * @param string  $userId
  * @param string  $comment
  */
 public function __construct($itemId, $userId, $comment)
 {
     parent::__construct($itemId, $userId);
     $this->comment = $comment;
 }