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.
21 lines
352 B
PHP
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;
|
|
}
|
|
} |