lk-students/app/Services/TestConnect.php

27 lines
883 B
PHP
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
namespace App\Services;
class TestConnect
{
public function getInfo($user): array
{
return [
'guid' => '3897263a-208f-11ee-93a9-f8cc6e370457',
'guid_faculty' => '4cbc06bd-5f3d-11ec-80b4-a0369f032517',
'guid_group' => '662e64d7-b4ad-11ec-937c-f8cc6e370458',
'name' => 'Абдулазиева Мадина Ибрагимовна',
'first_name' => 'Мадина1',
'last_name' => 'Абдулазиева',
'middle_name' => 'Ибрагимовна',
'number_record_book' => '23009202',
'email' => 'test@example.com',
'faculty' => 'Лечебный факультет',
'course' => 'Первый',
'group' => 'ЛД-103',
'code' => '31.05.01',
'form_education' => 'Очная',
];
}
}