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
415 B
PHP
18 lines
415 B
PHP
<?php
|
|
|
|
namespace IndifferentKetchup\Codex\Test\Tests\Log\File;
|
|
|
|
use IndifferentKetchup\Codex\Log\File\PathLogFile;
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
class PathLogFileTest extends TestCase
|
|
{
|
|
public function testGetContent(): void
|
|
{
|
|
$path = __DIR__ . "/../../../data/simple.log";
|
|
$logFile = new PathLogFile($path);
|
|
|
|
$this->assertStringEqualsFile($path, $logFile->getContent());
|
|
}
|
|
}
|