Files
ik-codex/src/Log/File/StringLogFile.php
indifferentketchup 66a2fcc5f3 Rename namespace Aternos\Codex to IndifferentKetchup\Codex
Bulk substitution across all PHP files in src/ and test/. Covers
namespace declarations, use statements, fully-qualified class
references, and @package PHPDoc tags. No logic changes.
2026-04-30 15:13:52 +00:00

21 lines
352 B
PHP

<?php
namespace IndifferentKetchup\Codex\Log\File;
/**
* Class StringLogFile
*
* @package IndifferentKetchup\Codex\Log\File
*/
class StringLogFile extends LogFile
{
/**
* StringLogFile constructor.
*
* @param string $string
*/
public function __construct(string $string)
{
$this->content = $string;
}
}