Skip to content

Instantly share code, notes, and snippets.

@estefanionsantos
Last active October 4, 2022 20:04
Show Gist options
  • Save estefanionsantos/a68333c5db7e325f28c7b904296f6b1f to your computer and use it in GitHub Desktop.
Save estefanionsantos/a68333c5db7e325f28c7b904296f6b1f to your computer and use it in GitHub Desktop.
Extending to class AbstractLogger
<?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