From 2d939230f0d01a4666840efcde004acb3443d9df Mon Sep 17 00:00:00 2001 From: Vincent Composieux Date: Sat, 28 Jun 2014 11:09:56 +0200 Subject: [PATCH] Add missing PHPdoc --- Tests/Manager/OptionManagerTest.php | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/Tests/Manager/OptionManagerTest.php b/Tests/Manager/OptionManagerTest.php index b69afc0..d544259 100644 --- a/Tests/Manager/OptionManagerTest.php +++ b/Tests/Manager/OptionManagerTest.php @@ -1,12 +1,35 @@ + */ class OptionManagerTest extends \PHPUnit_Framework_TestCase { + /** + * @var EntityManager + */ protected $entityManager; + + /** + * @var OptionRepository + */ protected $repository; /** @@ -14,6 +37,9 @@ class OptionManagerTest extends \PHPUnit_Framework_TestCase */ protected $manager; + /** + * Sets up a OptionManager instance + */ protected function setUp() { $this->entityManager = $this->getMockBuilder('Doctrine\ORM\EntityManager')->disableOriginalConstructor()->getMock();