Change couple of occurences of a public setUp() method to protected

This commit is contained in:
Jakub Zalas 2016-01-27 11:47:13 +00:00
parent 3a027badb7
commit 5fe7359659
2 changed files with 2 additions and 2 deletions

View File

@ -13,7 +13,7 @@ class AppVariableTest extends \PHPUnit_Framework_TestCase
*/
protected $appVariable;
public function setUp()
protected function setUp()
{
$this->appVariable = new AppVariable();
}

View File

@ -21,7 +21,7 @@ class ExtensionCompilerPassTest extends \PHPUnit_Framework_TestCase
private $container;
private $pass;
public function setUp()
protected function setUp()
{
$this->container = $this->getMock('Symfony\Component\DependencyInjection\ContainerBuilder');
$this->pass = new ExtensionCompilerPass();