about Yii access control filter and RBAC

Yii has two user authorization:

1: access control filter – ACF

2: role based acess control – RBAC

in a application, if I choose RBAC as user authorization and create role and auth permission with it, will the ACF exist in this application NOT affect my authorization? as well the both are work at the same time?

both will be enable

To disable it you must remove ‘accessControl’ from the method filters

thank you, I got it.