You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When we publish sections by command php spark auth:publish into our app folder to modify them , some variables of Auth.php config file set incorrect by CLI.
All values of $views array without \Auth path
for example: 'login' => 'App\Views\login'
must be: 'login' => 'App\Views\Auth\login'
Layout value also without App path $viewLayout = 'App\Views\layout
must be: $viewLayout = 'App\Views\Auth\layout
Also in User entity Entity namespaced incorrectly.
It is: use CodeIgniter\Entity;
must be: use CodeIgniter\Entity\Entity
CI v4.1.3 and MythAuth last dev version.
It seems that publish command should be fixed. Thanks.
The text was updated successfully, but these errors were encountered:
CodeIgniter\Entity\Entity came after this package. CodeIgniter\Entity is deprecated but will work just fine until the entire library can be updated with the new reference.
When we publish sections by command php spark auth:publish into our app folder to modify them , some variables of Auth.php config file set incorrect by CLI.
All values of $views array without \Auth path
for example:
'login' => 'App\Views\login'
must be:
'login' => 'App\Views\Auth\login'
Layout value also without App path
$viewLayout = 'App\Views\layout
must be:
$viewLayout = 'App\Views\Auth\layout
Also in User entity Entity namespaced incorrectly.
It is:
use CodeIgniter\Entity;
must be:
use CodeIgniter\Entity\Entity
CI v4.1.3 and MythAuth last dev version.
It seems that publish command should be fixed. Thanks.
The text was updated successfully, but these errors were encountered: