1
0
mirror of https://github.com/Seldaek/monolog.git synced 2025-08-09 06:36:46 +02:00

Merge pull request #123 from RobLoach/whitespace

Fix whitespace
This commit is contained in:
Jordi Boggiano
2012-10-13 02:41:59 -07:00
3 changed files with 3 additions and 3 deletions

View File

@@ -1,6 +1,6 @@
language: php language: php
php: php:
- 5.3 - 5.3
- 5.4 - 5.4

View File

@@ -142,4 +142,4 @@ class CubeHandler extends AbstractProcessingHandler
return curl_exec($this->httpConnection); return curl_exec($this->httpConnection);
} }
} }

View File

@@ -190,7 +190,7 @@ class SocketHandler extends AbstractProcessingHandler
{ {
$seconds = floor($this->timeout); $seconds = floor($this->timeout);
$microseconds = round(($this->timeout - $seconds)*1e6); $microseconds = round(($this->timeout - $seconds)*1e6);
return stream_set_timeout($this->resource, $seconds, $microseconds); return stream_set_timeout($this->resource, $seconds, $microseconds);
} }