class Address extends Controller
{
protected $beforeActionList = [
'first' => ['only' => 'second,third'],
] ;
public function first(){
echo "first";
}
public function second(){
echo "second";
}
public function third()
{
echo "third";
}
}
当访问second ,或third时先访问first方法