Skip to content

Instantly share code, notes, and snippets.

@avalanche123
Forked from loicfrering/HelloController.php
Created September 23, 2010 13:30
Show Gist options
  • Save avalanche123/593607 to your computer and use it in GitHub Desktop.
Save avalanche123/593607 to your computer and use it in GitHub Desktop.
<?php
namespace Application\HelloBundle\Controller;
use Symfony\Bundle\FrameworkBundle\Controller\Controller;
/** @Service(id="hello_controller") */
class HelloController extends Controller
{
protected $userRepository;
protected $logger;
protected $auth;
/** @Inject({logger="logger", auth="my_auth_service_id"}) */
public function __contruct(Logger $logger, Auth $auth)
{
$this->logger = $logger;
$this->auth = $auth;
}
/** @Inject("user_repository") */
public function setUserRepository($userRepository)
{
$this->userRepository = $userRepository;
return $this;
}
public function indexAction($name)
{
$user = $this->userRepository->findOneByName($name);
return $this->render('HelloBundle:Hello:index', array('user' => $user));
}
}
<?php
$controller = new Controller(new NullLogger(), $this->getMockAuthService());
$controller->setUserRepository($this->getMockUserRepository());
//assert something
<?php
namespace Application\HelloBundle\Repository;
use Doctrine\ORM\EntityRepository;
/** @Service(id="user_repository") */
class UserRepository extends EntityRepository
{
protected $logger;
/** @Inject("zend.logger") */
public function setLogger($logger)
{
$this->logger = $logger;
return $this;
}
public function createUser($user)
{
$this->_em->persist($user);
$this->logger->info('User ' . $user->getName() . ' successfully persisted.');
}
}
@ornicar
Copy link

ornicar commented Sep 23, 2010

You also have to declare Logger and Auth namespaces in the controller class file.

@avalanche123
Copy link
Author

Yes, yes, absolutely, this is just for demonstration purposes, but you're right.

@ornicar
Copy link

ornicar commented Sep 23, 2010

Annotations look nice but when it comes to debugging it makes things harder.
And writing $this['service_id'] is much easier than writing injection annotations, constructor/setters and namespaces.

I get the idea of making the controller not container aware, but it's just less usable IMHO.

@avalanche123
Copy link
Author

Well, you're right, but only if you don't test controllers.
Read, the justification in the first message here http://groups.google.com/group/symfony-devs/browse_thread/thread/7766abae81097e9d

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment