rename to notifications

This commit is contained in:
PaulCombal
2019-03-01 12:49:26 +01:00
parent 480947afaf
commit d8e915d759
13 changed files with 59 additions and 59 deletions

View File

@@ -0,0 +1,20 @@
<?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';
}
}