add some phpdoc

This commit is contained in:
Manuel Raynaud
2012-10-11 18:12:42 +02:00
parent b892264882
commit b603c6cf44
8 changed files with 75 additions and 17 deletions

View File

@@ -4,6 +4,11 @@ namespace Thelia\Controller;
use Thelia\Controller\NullController;
/**
*
* @author Manuel Raynaud <mraynadu@openstudio.fr>
*/
class DefaultController extends NullController{

View File

@@ -2,6 +2,11 @@
namespace Thelia\Controller;
/**
*
* @author Manuel Raynaud <mraynaud@openstudio.fr>
*/
abstract class NullController {
/**

View File

@@ -1,11 +0,0 @@
<?php
namespace Thelia\Controller;
use Symfony\Component\HttpKernel\Controller\ControllerResolver;
class TheliaController extends ControllerResolver {
}
?>