Skip to content

Commit

Permalink
Merge pull request #6 from nguyenanhung/develop
Browse files Browse the repository at this point in the history
fix bug class Debug
  • Loading branch information
nguyenanhung authored Oct 11, 2018
2 parents bc12559 + efa4382 commit ff7393f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Debug.php
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ public function getGlobalLoggerLevel()
*/
public function setGlobalLoggerLevel($globalLoggerLevel = NULL)
{
if (!empty($logger_filename) && is_string($globalLoggerLevel)) {
if (!empty($globalLoggerLevel) && is_string($globalLoggerLevel)) {
$this->globalLoggerLevel = strtolower($globalLoggerLevel);
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/Interfaces/ProjectInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ interface ProjectInterface
/**
* Base version of Project
*/
const VERSION = '0.1.2.1';
const VERSION = '0.1.2.2';

/**
* Function getVersion
Expand Down

0 comments on commit ff7393f

Please sign in to comment.