Last active
October 4, 2022 20:04
-
-
Save estefanionsantos/a68333c5db7e325f28c7b904296f6b1f to your computer and use it in GitHub Desktop.
Extending to class AbstractLogger
This file contains hidden or 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
<?php | |
use Rubricate\Logger\AbstractLogger; | |
class TestLog extends AbstractLogger | |
{ | |
protected static function getDirFullPath() | |
{ | |
return '/path/to/directory/logs/'; | |
} | |
protected static function getPrefixToFile() | |
{ | |
return 'dev_'; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment