Skip to content

Commit

Permalink
Fixed mistyped error
Browse files Browse the repository at this point in the history
  • Loading branch information
Boris Gorbylev committed Mar 10, 2015
1 parent edc2b67 commit 078edf3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/LumberjackHandler.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public function init($host, $port, $cafile, array $options = array())
{
$windowSize = self::DEFAULT_WINDOW_SIZE;

if (array_key_exists('windows_size', $options)) {
if (array_key_exists('window_size', $options)) {
$windowSize = $options['window_size'] ?: self::DEFAULT_WINDOW_SIZE;
unset($options['window_size']);
}
Expand Down

0 comments on commit 078edf3

Please sign in to comment.