-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Class names now namespaced, package layout adjusted accordingly
- Loading branch information
wasinger
committed
Aug 13, 2013
1 parent
2d9cfae
commit 518a032
Showing
6 changed files
with
13 additions
and
9 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
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
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
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
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 |
---|---|---|
@@ -1,13 +1,14 @@ | ||
<?php | ||
require (__DIR__ . '/Wa72/SimpleLogger/FileLogger.php'); | ||
/** | ||
* This class is a very, very simple file logger implementing \Psr\Log\LoggerInterface (PSR-3). | ||
* It is now called Wa72FileLogger and the deprecated class Wa72SimpleLogger is kept only for compatibility. | ||
* It is now called \Wa72\SimpleLogger\FileLogger and the deprecated class Wa72SimpleLogger is kept only for compatibility. | ||
* | ||
* @author Christoph Singer | ||
* @license MIT | ||
* @deprecated | ||
* @see Wa72FileLogger | ||
* @see Wa72\SimpleLogger\FileLogger | ||
*/ | ||
class Wa72SimpleLogger extends Wa72FileLogger | ||
class Wa72SimpleLogger extends \Wa72\SimpleLogger\FileLogger | ||
{ | ||
} |
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 |
---|---|---|
|
@@ -21,7 +21,7 @@ | |
}, | ||
"autoload":{ | ||
"psr-0":{ | ||
"Wa72SimpleLogger":"" | ||
"Wa72\\SimpleLogger":"." | ||
} | ||
} | ||
} | ||
|