This commit is contained in:
gaofeng
2026-06-17 09:23:18 +08:00
commit 81ade70944
1638 changed files with 213697 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();