Skip to content

Commit

Permalink
Fixed a wrong variable name and added null for phpdoc.
Browse files Browse the repository at this point in the history
  • Loading branch information
Takashi Matsuo committed Apr 2, 2016
1 parent 725b42d commit 262913c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Logger/AppEngineFlexHandler.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ class AppEngineFlexHandler extends StreamHandler
* @param Boolean $bubble Whether the messages that are handled can bubble up the stack or not.
* @param int|null $filePermission Optional file permissions (default (0640) are only for owner read/write).
* @param Boolean $useLocking Try to lock log file before doing any writes.
* @param resource|string $stream
* @param resource|string|null $stream
*/
public function __construct(
$level = Logger::INFO,
Expand Down
2 changes: 1 addition & 1 deletion tests/Logger/AppEngineFlexHandlerTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
class AppEngineFlexHandlerTest extends \PHPUnit_Framework_TestCase
{
private $path;
private $handler;
private $log;

public function setUp()
{
Expand Down

0 comments on commit 262913c

Please sign in to comment.