Made test properties to be private instead of protected

This commit is contained in:
Alejandro Celaya
2018-11-20 19:37:22 +01:00
parent 0ae5a53d86
commit 5abd9d1a40
51 changed files with 90 additions and 90 deletions

View File

@@ -23,13 +23,13 @@ use Zend\Config\Writer\WriterInterface;
class InstallCommandTest extends TestCase
{
/** @var InstallCommand */
protected $command;
private $command;
/** @var CommandTester */
protected $commandTester;
private $commandTester;
/** @var ObjectProphecy */
protected $configWriter;
private $configWriter;
/** @var ObjectProphecy */
protected $filesystem;
private $filesystem;
public function setUp()
{