for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Shippinno\Notification\Application\Query;
class FetchNotification
{
/**
* @var int
*/
private $notificationId;
* @param int $notificationId
public function __construct(int $notificationId)
$this->notificationId = $notificationId;
}
* @return int
public function notificationId(): int
return $this->notificationId;