5 changed files with 28 additions and 29 deletions
@ -1,20 +0,0 @@
|
||||
<?php |
||||
|
||||
namespace Bluesquare\NotificationsBundle\Service; |
||||
|
||||
use Symfony\Component\DependencyInjection\ContainerInterface; |
||||
use Symfony\Component\HttpFoundation\RequestStack; |
||||
|
||||
class FooService |
||||
{ |
||||
public function __construct(RequestStack $requestStack) |
||||
{ |
||||
|
||||
} |
||||
|
||||
public function foo() |
||||
{ |
||||
die(var_dump('azertyu')); |
||||
return 'bar'; |
||||
} |
||||
} |
@ -0,0 +1,20 @@
|
||||
<?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'; |
||||
} |
||||
} |
Loading…
Reference in new issue