for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace App\Src\UseCases\Domain\Users\Dto;
class GetUserRole
{
public function get()
return collect([
new WikiUserRole('advisor'),
new WikiUserRole('farmer'),
new WikiUserRole('student'),
new WikiUserRole('searcher'),
new WikiUserRole('agro-supplier'),
new WikiUserRole('others'),
]);
}