symfony-notifications/NotificationsBundle/Service/NotificationsService.php

20 lines
316 B
PHP
Raw Normal View History

2019-03-01 13:12:17 +01:00
<?php
namespace Bluesquare\NotificationsBundle\Service;
use Doctrine\ORM\EntityManagerInterface;
class NotificationsService
{
protected $em;
public function __construct(EntityManagerInterface $em)
{
$this->em = $em;
}
public function notifyUsers()
{
return 'bar';
}
}