Skip to content
This repository has been archived by the owner on Aug 2, 2022. It is now read-only.

Commit

Permalink
Remove trait use to placate PHP 5.3
Browse files Browse the repository at this point in the history
  • Loading branch information
aheinz-sg committed Oct 1, 2015
1 parent 291a0fd commit 8836e2e
Showing 1 changed file with 15 additions and 2 deletions.
17 changes: 15 additions & 2 deletions Entity/XhguiRuns.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,24 @@

use iXHProfRuns;
use Symfony\Component\DependencyInjection\ContainerAwareInterface;
use Symfony\Component\DependencyInjection\ContainerAwareTrait;
use Symfony\Component\DependencyInjection\ContainerInterface;

class XhguiRuns implements iXHProfRuns, ContainerAwareInterface
{
use ContainerAwareTrait;
/**
* @var ContainerInterface
*/
protected $container;

/**
* Sets the Container associated with this Controller.
*
* @param ContainerInterface $container A ContainerInterface instance
*/
public function setContainer(ContainerInterface $container = null)
{
$this->container = $container;
}

public function __construct($serverName, $uri) {
$this->serverName = $serverName;
Expand Down

0 comments on commit 8836e2e

Please sign in to comment.