-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Drop Krumo::version(), instead use class constant Krumo::version
- Loading branch information
1 parent
db1a28b
commit f964e32
Showing
1 changed file
with
2 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,7 @@ | |
* used by a lot of PHP developers. | ||
* | ||
* @author Kaloyan K. Tsvetkov <[email protected]> | ||
* @license http://opensource.org/licenses/lgpl-license.php GNU Lesser General public License Version 2.1 | ||
* @license https://opensource.org/licenses/LGPL-2.1 GNU Lesser General public License Version 2.1 | ||
* | ||
* @package Krumo | ||
* @version 0.4.2 | ||
|
@@ -25,16 +25,7 @@ | |
*/ | ||
class krumo | ||
{ | ||
/** | ||
* Return Krumo version | ||
* @return string | ||
*/ | ||
static function version() | ||
{ | ||
return '0.4.2'; | ||
} | ||
|
||
// -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- | ||
const version = '0.4.3'; | ||
|
||
/** | ||
* Prints a debug backtrace | ||
|