Fenos\Notifynder\Builder\NotifynderBuilder::__construct PHP Method

__construct() public method

public __construct ( Fenos\Notifynder\Contracts\NotifynderCategory $notifynderCategory )
$notifynderCategory Fenos\Notifynder\Contracts\NotifynderCategory
    public function __construct(NotifynderCategory $notifynderCategory)
    {
        $this->notifynderCategory = $notifynderCategory;
    }

Usage Example

 /**
  * @param NotifynderCategory     $notifynderCategory
  * @param NotifynderSender       $notifynderSender
  * @param NotifynderNotification $notification
  * @param NotifynderDispatcher   $notifynderDispatcher
  * @param NotifynderGroup        $notifynderGroup
  */
 public function __construct(NotifynderCategory $notifynderCategory, NotifynderSender $notifynderSender, NotifynderNotification $notification, NotifynderDispatcher $notifynderDispatcher, NotifynderGroup $notifynderGroup)
 {
     $this->notifynderCategory = $notifynderCategory;
     $this->notifynderSender = $notifynderSender;
     $this->notification = $notification;
     $this->notifynderDispatcher = $notifynderDispatcher;
     $this->notifynderGroup = $notifynderGroup;
     parent::__construct($notifynderCategory);
 }