Skip to content

Instantly share code, notes, and snippets.

@Mulkave
Created June 8, 2016 21:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Mulkave/244c08315076a892212e965aafb08f74 to your computer and use it in GitHub Desktop.
Save Mulkave/244c08315076a892212e965aafb08f74 to your computer and use it in GitHub Desktop.
<?php
namespace Directory\Domains\Notification\Notifications;
use Directory\Foundation\Notification;
use Directory\Data\Entities\Citizen\Citizen;
class CitizenCreatedNotification extends Notification
{
private $citizen;
public function __construct(Citizen $citizen)
{
$this->citizen = $citizen;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment