Commit fb176b75 authored by Fabien Potencier's avatar Fabien Potencier

minor #1252 Fixed not explicitly declared properties (deguif)

This PR was merged into the 1.3 branch.

Discussion
----------

Fixed not explicitly declared properties

Commits
-------

b61f087c Fixed not explicitly declared properties
parents eefb8a68 b61f087c
......@@ -15,6 +15,9 @@ use Silex\CallbackResolver;
class CallbackResolverTest extends \PHPUnit_Framework_Testcase
{
private $app;
private $resolver;
public function setup()
{
$this->app = new \Pimple();
......
......@@ -21,6 +21,11 @@ use Symfony\Component\HttpFoundation\Request;
*/
class ServiceControllerResolverTest extends \PHPUnit_Framework_Testcase
{
private $app;
private $mockCallbackResolver;
private $mockResolver;
private $resolver;
public function setup()
{
$this->mockResolver = $this->getMockBuilder('Symfony\Component\HttpKernel\Controller\ControllerResolverInterface')
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment