This commit is contained in:
gaofeng
2026-05-13 10:44:29 +08:00
commit 0b165153c6
3674 changed files with 316663 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
<?php
namespace think\tests\dumper;
use PHPUnit\Framework\TestCase;
class DumperTest extends TestCase
{
public function testDump()
{
dump(['aa' => 'bbb', 'cc' => 'dd']);
dump($this);
}
}

View File

@@ -0,0 +1,13 @@
<?php
$app = new \think\App();
$app->config->set([
'default' => 'file',
'stores' => [
'file' => [
'type' => 'File',
],
],
], 'cache');
$app->initialize();