mirror of
https://gitee.com/fastadminnet/framework.git
synced 2026-07-01 12:42:48 +08:00
10 lines
137 B
PHP
10 lines
137 B
PHP
<?php
|
|
namespace tests\thinkphp\library\think\behavior;
|
|
|
|
class Three
|
|
{
|
|
public function run(&$data) {
|
|
$data['id'] = 3;
|
|
}
|
|
}
|