lonnieezell / myth-auth

One-stop Auth package for CodeIgniter 4
MIT License
632 stars 207 forks source link

bug when use auth:publish BaseFilter not found #568

Closed hunter-and1 closed 1 year ago

hunter-and1 commented 2 years ago

when use auth:publish filters and clone all filters into filters folder he missing class BaseFilter. image

error in 3 classes LoginFilter.php,PermissionFilter.php,RoleFilter.php

hunter-and1 commented 2 years ago

fix by using include use \Myth\Auth\Filters\BaseFilter;

manageruz commented 2 years ago

Thank you @hunter-and1 for the error report. Do you want to make a PR?

manageruz commented 2 years ago

fix by using include use \Myth\Auth\Filters\BaseFilter;

just use Myth\Auth\Filters\BaseFilter;

hunter-and1 commented 2 years ago

yeah

hunter-and1 commented 2 years ago

this is my pull request https://github.com/lonnieezell/myth-auth/pull/569