Commit 25ea3da6 authored by Fabien Potencier's avatar Fabien Potencier

Merge branch '1.2'

* 1.2:
  fixed tests for PHP 5.3

Conflicts:
	tests/Silex/Tests/CallbackServicesTest.php
parents afa410c4 8643b3b9
...@@ -31,7 +31,7 @@ class CallbackServicesTest extends \PHPUnit_Framework_TestCase ...@@ -31,7 +31,7 @@ class CallbackServicesTest extends \PHPUnit_Framework_TestCase
$app->register(new ServiceControllerServiceProvider()); $app->register(new ServiceControllerServiceProvider());
$app['service'] = function () { $app['service'] = function () {
return new self(); return new CallbackServicesTest();
}; };
$app->before('service:beforeApp'); $app->before('service:beforeApp');
......
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