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