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.
18 lines
391 B
PHP
18 lines
391 B
PHP
<?php
|
|
|
|
namespace IndifferentKetchup\Codex\Test\Tests\Log\File;
|
|
|
|
use IndifferentKetchup\Codex\Log\File\StringLogFile;
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
class StringLogFileTest extends TestCase
|
|
{
|
|
public function testGetContent(): void
|
|
{
|
|
$content = uniqid();
|
|
$logFile = new StringLogFile($content);
|
|
|
|
$this->assertEquals($content, $logFile->getContent());
|
|
}
|
|
}
|