Advertisement
Guest User

Untitled

a guest
May 27th, 2015
222
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. <?php
  2. namespace AppBundle\Service;
  3.  
  4. use Symfony\Component\DependencyInjection\Container;
  5.  
  6. abstract class AbstractService implements SomeInterface {
  7. protected $container;
  8.  
  9. public function __construct(Container $container)
  10. {
  11. $this->container = $container;
  12. }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement