Commit c5aaea4f authored by Igor Wiedler's avatar Igor Wiedler

rename WebTestCase::{createApp => createApplication}

parent a9d1698e
......@@ -31,15 +31,15 @@ abstract class WebTestCase extends BaseWebTestCase
*/
public function setUp()
{
$this->app = $this->createApp();
$this->app = $this->createApplication();
}
/**
* Creates the application (HttpKernel, most likely Framework).
* Creates the application.
*
* @return Symfony\Component\HttpKernel\HttpKernel
*/
abstract public function createApp();
abstract public function createApplication();
/**
* Creates a Client.
......
......@@ -21,7 +21,7 @@ use Silex\WebTestCase;
*/
class WebTestCaseTest extends WebTestCase
{
public function createApp()
public function createApplication()
{
$app = new Application();
......
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