We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 59e84ba commit f3020a1Copy full SHA for f3020a1
1 file changed
Controller/PanelController.php
@@ -9,16 +9,19 @@
9
*/
10
namespace Propel\Bundle\PropelBundle\Controller;
11
12
-use Symfony\Component\DependencyInjection\ContainerAware;
+use Symfony\Component\DependencyInjection\ContainerAwareInterface;
13
+use Symfony\Component\DependencyInjection\ContainerAwareTrait;
14
use Symfony\Component\HttpFoundation\Response;
15
16
/**
17
* PanelController is designed to display information in the Propel Panel.
18
*
19
* @author William DURAND <william.durand1@gmail.com>
20
-class PanelController extends ContainerAware
21
+class PanelController implements ContainerAwareInterface
22
{
23
+ use ContainerAwareTrait;
24
+
25
26
* This method renders the global Propel configuration.
27
0 commit comments