1
0
mirror of https://github.com/Seldaek/monolog.git synced 2025-08-01 10:50:21 +02:00
This commit is contained in:
Jordi Boggiano
2014-03-23 20:50:26 +01:00
parent 8222de98a4
commit 392ef35fd4
29 changed files with 55 additions and 88 deletions

View File

@@ -120,7 +120,7 @@ class SocketHandlerTest extends TestCase
{
$this->setMockHandler(array('fwrite'));
$callback = function($arg) {
$callback = function ($arg) {
$map = array(
'Hello world' => 6,
'world' => false,
@@ -143,7 +143,7 @@ class SocketHandlerTest extends TestCase
{
$this->setMockHandler(array('fwrite', 'streamGetMetadata'));
$callback = function($arg) {
$callback = function ($arg) {
$map = array(
'Hello world' => 6,
'world' => 5,
@@ -170,7 +170,7 @@ class SocketHandlerTest extends TestCase
$this->setMockHandler(array('fwrite', 'streamGetMetadata'));
$res = $this->res;
$callback = function($string) use ($res) {
$callback = function ($string) use ($res) {
fclose($res);
return strlen('Hello');
@@ -200,7 +200,7 @@ class SocketHandlerTest extends TestCase
{
$this->setMockHandler(array('fwrite'));
$callback = function($arg) {
$callback = function ($arg) {
$map = array(
'Hello world' => 6,
'world' => 5,