Skip to content

Commit

Permalink
Add missing PHPdoc
Browse files Browse the repository at this point in the history
  • Loading branch information
Vincent Composieux committed Jun 28, 2014
1 parent 5e1c883 commit 2d93923
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions Tests/Manager/OptionManagerTest.php
@@ -1,19 +1,45 @@
<?php
/*
* This file is part of the Ekino Wordpress package.
*
* (c) 2013 Ekino
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

namespace Ekino\WordpressBundle\Tests\Manager;

use Doctrine\ORM\EntityManager;

use Ekino\WordpressBundle\Manager\OptionManager;
use Ekino\WordpressBundle\Repository\OptionRepository;

/**
* Class OptionManagerTest
*
* @author Xavier Coureau <xav.is@2cool4school.fr>
*/
class OptionManagerTest extends \PHPUnit_Framework_TestCase
{
/**
* @var EntityManager
*/
protected $entityManager;

/**
* @var OptionRepository
*/
protected $repository;

/**
* @var OptionManager
*/
protected $manager;

/**
* Sets up a OptionManager instance
*/
protected function setUp()
{
$this->entityManager = $this->getMockBuilder('Doctrine\ORM\EntityManager')->disableOriginalConstructor()->getMock();
Expand Down

0 comments on commit 2d93923

Please sign in to comment.