Merge branch 'master' of https://github.com/openclassify/openclassify into muammer2

This commit is contained in:
Muammer Top 2020-10-15 10:34:41 +03:00
commit 136d314b19
2 changed files with 3 additions and 3 deletions

View File

@ -2,7 +2,7 @@
use Anomaly\UsersModule\Role\Contract\RoleRepositoryInterface;
class getAdmins
class getAdminUsers
{
public function handle()
{

View File

@ -1,10 +1,10 @@
<?php
use Visiosoft\ProfileModule\Support\Command\getAdmins;
use Visiosoft\ProfileModule\Support\Command\getAdminUsers;
if (!function_exists('get_admins'))
{
function getAdmins() {
return dispatch_now(new getAdmins());
return dispatch_now(new getAdminUsers());
}
}