Commit b960bad3 authored by Possum's avatar Possum

PHPDocs Application -> HttpKernelInterface

parent 53e599f9
......@@ -12,7 +12,7 @@
namespace Silex;
use Symfony\Component\HttpKernel\Client;
use Symfony\Component\HttpKernel\HttpKernel;
use Symfony\Component\HttpKernel\HttpKernelInterface;
/**
* WebTestCase is the base class for functional tests.
......@@ -22,9 +22,9 @@ use Symfony\Component\HttpKernel\HttpKernel;
abstract class WebTestCase extends \PHPUnit_Framework_TestCase
{
/**
* Application instance.
* HttpKernelInterface instance.
*
* @var Application
* @var HttpKernelInterface
*/
protected $app;
......@@ -42,14 +42,14 @@ abstract class WebTestCase extends \PHPUnit_Framework_TestCase
/**
* Creates the application.
*
* @return HttpKernel
* @return HttpKernelInterface
*/
abstract public function createApplication();
/**
* Creates a Client.
*
* @param array $server An array of server parameters
* @param array $server Server parameters
*
* @return Client A Client instance
*/
......
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