* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Inpsyde\Restore\Log; /** * @author Guido Scialfa */ class NullLogData implements Log { /** * {@inheritDoc} */ public function date(): string { return ''; } /** * {@inheritDoc} */ public function level(): string { return ''; } /** * {@inheritDoc} */ public function message(): string { return ''; } }