Skip to content

Commit

Permalink
Merge pull request #5 from Humni/master
Browse files Browse the repository at this point in the history
Support for PHP 7.0.*
  • Loading branch information
cr0wst committed Jan 13, 2018
2 parents b536ead + b6584dd commit 861d7fc
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
1 change: 1 addition & 0 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
}
],
"require": {
"php": ">=7.0.0",
"guzzlehttp/guzzle": "^6.3",
"laravel/framework": "~5.0"
},
Expand Down
12 changes: 6 additions & 6 deletions src/Constants/LogLevel.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ class LogLevel
* Example: A log level of 0 will disable logging entirely, while a log level of 2 will enable ERROR, WARN,
* and TRACE.
*/
public const NONE = 0;
public const ERROR = 1;
public const WARN = 2;
public const INFO = 3;
public const TRACE = 4;
public const DEBUG = 5;
const NONE = 0;
const ERROR = 1;
const WARN = 2;
const INFO = 3;
const TRACE = 4;
const DEBUG = 5;
}

0 comments on commit 861d7fc

Please sign in to comment.