This commit is contained in:
PaulCombal
2019-03-01 12:18:06 +01:00
commit 14ac7fe69a
11 changed files with 282 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
<?php
namespace Bluesquare\TestBundle\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';
}
}