Passed
Push — master ( b61a9d...24e034 )
by Faiq
04:42
created
app/User.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -51,7 +51,7 @@
 block discarded – undo
51 51
      */
52 52
     public function trimStr(string $str)
53 53
     {
54
-        if(strlen($str) > 50) {
54
+        if (strlen($str) > 50) {
55 55
             return substr($str, '0', '50')."...";
56 56
         }
57 57
         return $str;
Please login to merge, or discard this patch.
Braces   +5 added lines, -4 removed lines patch added patch discarded remove patch
@@ -8,8 +8,7 @@  discard block
 block discarded – undo
8 8
 use Illuminate\Foundation\Auth\User as Authenticatable;
9 9
 use Illuminate\Support\Facades\Auth;
10 10
 
11
-class User extends Authenticatable
12
-{
11
+class User extends Authenticatable {
13 12
     use Notifiable;
14 13
 
15 14
     /**
@@ -47,14 +46,16 @@  discard block
 block discarded – undo
47 46
         'updated_at'
48 47
     ];
49 48
 
50
-    public function thread() {
49
+    public function thread()
50
+    {
51 51
         return $this->hasMany('App\Thread', 'user_id');
52 52
     }
53 53
 
54 54
     /**
55 55
      * @return int
56 56
      */
57
-    public function threadAnswered() {
57
+    public function threadAnswered()
58
+    {
58 59
         return count(
59 60
             Thread::where('status', true)
60 61
                 ->where('user_id', Auth::guard('web')
Please login to merge, or discard this patch.
app/Doctor.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -78,7 +78,7 @@
 block discarded – undo
78 78
      */
79 79
     public function trimStr($str)
80 80
     {
81
-        if(strlen($str) > 20) {
81
+        if (strlen($str) > 20) {
82 82
             return substr($str, 0, 20)."...";
83 83
         }
84 84
         return $str;
Please login to merge, or discard this patch.
Braces   +5 added lines, -4 removed lines patch added patch discarded remove patch
@@ -9,8 +9,7 @@  discard block
 block discarded – undo
9 9
 use Illuminate\Contracts\Auth\MustVerifyEmail;
10 10
 use Illuminate\Foundation\Auth\User as Authenticatable;
11 11
 
12
-class Doctor extends Authenticatable
13
-{
12
+class Doctor extends Authenticatable {
14 13
     use Notifiable;
15 14
 
16 15
     protected $guard = 'doctor';
@@ -74,11 +73,13 @@  discard block
 block discarded – undo
74 73
         return $this->belongsTo('App\DoctorSpecialization', 'specialization_id');
75 74
     }
76 75
 
77
-    public function city() {
76
+    public function city()
77
+    {
78 78
         return $this->belongsTo('App\City', 'city_id');
79 79
     }
80 80
 
81
-    public function thread() {
81
+    public function thread()
82
+    {
82 83
         return $this->hasMany('App\Thread', 'doctor_id');
83 84
     }
84 85
 
Please login to merge, or discard this patch.
app/Http/Middleware/Authenticate.php 2 patches
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -14,10 +14,10 @@
 block discarded – undo
14 14
      */
15 15
     protected function redirectTo($request)
16 16
     {
17
-        if (! $request->expectsJson()) {
18
-            if($request->is('admin') || $request->is('admin/*')) {
17
+        if (!$request->expectsJson()) {
18
+            if ($request->is('admin') || $request->is('admin/*')) {
19 19
                 return route('admin.login');
20
-            } else if($request->is('doctor') || $request->is('doctor/*')) {
20
+            } else if ($request->is('doctor') || $request->is('doctor/*')) {
21 21
                 return route('doctor.login');
22 22
             } else {
23 23
                 return route('login');
Please login to merge, or discard this patch.
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -4,8 +4,7 @@
 block discarded – undo
4 4
 
5 5
 use Illuminate\Auth\Middleware\Authenticate as Middleware;
6 6
 
7
-class Authenticate extends Middleware
8
-{
7
+class Authenticate extends Middleware {
9 8
     /**
10 9
      * Get the path the user should be redirected to when they are not authenticated.
11 10
      *
Please login to merge, or discard this patch.
app/Http/Middleware/RedirectIfAuthenticated.php 3 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@
 block discarded – undo
30 30
                 break;
31 31
             default:
32 32
                 if (Auth::guard($guard)->check()) {
33
-                     return redirect()->route('home');
33
+                        return redirect()->route('home');
34 34
                 }
35 35
         }
36 36
 
Please login to merge, or discard this patch.
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -17,14 +17,14 @@
 block discarded – undo
17 17
      */
18 18
     public function handle($request, Closure $next, $guard = null)
19 19
     {
20
-        switch($guard) {
20
+        switch ($guard) {
21 21
             case 'admin':
22
-                if(Auth::guard($guard)->check()) {
22
+                if (Auth::guard($guard)->check()) {
23 23
                     return redirect()->route('admin.index');
24 24
                 }
25 25
                 break;
26 26
             case 'doctor':
27
-                if(Auth::guard($guard)->check()) {
27
+                if (Auth::guard($guard)->check()) {
28 28
                     return redirect()->route('admin.index');
29 29
                 }
30 30
                 break;
Please login to merge, or discard this patch.
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -5,8 +5,7 @@
 block discarded – undo
5 5
 use Closure;
6 6
 use Illuminate\Support\Facades\Auth;
7 7
 
8
-class RedirectIfAuthenticated
9
-{
8
+class RedirectIfAuthenticated {
10 9
     /**
11 10
      * Handle an incoming request.
12 11
      *
Please login to merge, or discard this patch.
app/Http/Controllers/RoomController.php 2 patches
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -47,13 +47,13 @@  discard block
 block discarded – undo
47 47
                 'updated_at' => Carbon::now()
48 48
             ));
49 49
 
50
-        if($room_id != null && $hospital_id != null) {
50
+        if ($room_id != null && $hospital_id != null) {
51 51
             $data = [
52 52
                 'hospital_id' => $hospital_id,
53 53
                 'room_id' => $room_id
54 54
             ];
55 55
 
56
-            if($this->insertRoomDetails($data) && $this->updateHospitalUpdatedAt($hospital_id)) {
56
+            if ($this->insertRoomDetails($data) && $this->updateHospitalUpdatedAt($hospital_id)) {
57 57
                 return redirect(route('hospital.show', $hospital_id));
58 58
             }
59 59
         }
@@ -112,7 +112,7 @@  discard block
 block discarded – undo
112 112
 
113 113
         $hospital = $this->updateHospitalUpdatedAt($request->input('hospital_id'));
114 114
 
115
-        if($room->save() && $hospital == true) {
115
+        if ($room->save() && $hospital == true) {
116 116
             return redirect(route('hospital.show', $request->input('hospital_id')));
117 117
         }
118 118
     }
@@ -130,8 +130,8 @@  discard block
 block discarded – undo
130 130
         $hospital = $this->updateHospitalUpdatedAt($hospital_id);
131 131
         $detail = $this->deleteRoomDetails($room_id, $hospital_id);
132 132
 
133
-        if($room && $hospital && $detail) {
134
-            return redirect(route('hospital.show', ['id' => $hospital_id]));
133
+        if ($room && $hospital && $detail) {
134
+            return redirect(route('hospital.show', [ 'id' => $hospital_id ]));
135 135
         }
136 136
     }
137 137
 
@@ -143,11 +143,11 @@  discard block
 block discarded – undo
143 143
     {
144 144
         $insert = DB::table('room_details')
145 145
             ->insert([
146
-                'room_id' => $data['room_id'],
147
-                'hospital_id' => $data['hospital_id']
146
+                'room_id' => $data[ 'room_id' ],
147
+                'hospital_id' => $data[ 'hospital_id' ]
148 148
             ]);
149 149
 
150
-        if($insert) {
150
+        if ($insert) {
151 151
             return true;
152 152
         }
153 153
 
@@ -166,7 +166,7 @@  discard block
 block discarded – undo
166 166
             ->where('hospital_id', '=', $hospital_id)
167 167
             ->delete();
168 168
 
169
-        if($delete) {
169
+        if ($delete) {
170 170
             return true;
171 171
         }
172 172
 
@@ -181,7 +181,7 @@  discard block
 block discarded – undo
181 181
     {
182 182
         $hospital = Hospital::find($id);
183 183
         $hospital->updated_at = Carbon::now();
184
-        if($hospital->save()) {
184
+        if ($hospital->save()) {
185 185
             return true;
186 186
         }
187 187
 
Please login to merge, or discard this patch.
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -8,8 +8,7 @@
 block discarded – undo
8 8
 use App\Hospital;
9 9
 use App\Room;
10 10
 
11
-class RoomController extends Controller
12
-{
11
+class RoomController extends Controller {
13 12
     /**
14 13
      * Show the form for creating a new resource.
15 14
      *
Please login to merge, or discard this patch.
app/Http/Controllers/Auth/DoctorLoginController.php 3 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -59,7 +59,7 @@
 block discarded – undo
59 59
     private function sendFailedLoginResponse(Request $request)
60 60
     {
61 61
         throw ValidationException::withMessages([
62
-           'email' => [trans('auth.failed')],
62
+            'email' => [trans('auth.failed')],
63 63
         ]);
64 64
     }
65 65
 }
Please login to merge, or discard this patch.
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@  discard block
 block discarded – undo
34 34
             'password' => 'required|min:6'
35 35
         ]);
36 36
 
37
-        if($validate->fails()) {
37
+        if ($validate->fails()) {
38 38
             return redirect()->back()->withErrors($validate);
39 39
         }
40 40
 
@@ -44,7 +44,7 @@  discard block
 block discarded – undo
44 44
         ];
45 45
 
46 46
         // Attempt Login
47
-        if(Auth::guard('doctor')->attempt($credentials, $request->remember)) {
47
+        if (Auth::guard('doctor')->attempt($credentials, $request->remember)) {
48 48
             // If 'true' -> redirect to admin.index
49 49
             session([
50 50
                 'role' => 'Doctor',
@@ -59,7 +59,7 @@  discard block
 block discarded – undo
59 59
     private function sendFailedLoginResponse(Request $request)
60 60
     {
61 61
         throw ValidationException::withMessages([
62
-           'email' => [trans('auth.failed')],
62
+           'email' => [ trans('auth.failed') ],
63 63
         ]);
64 64
     }
65 65
 }
Please login to merge, or discard this patch.
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -8,8 +8,7 @@
 block discarded – undo
8 8
 use Illuminate\Support\Facades\Validator;
9 9
 use Illuminate\Validation\ValidationException;
10 10
 
11
-class DoctorLoginController extends Controller
12
-{
11
+class DoctorLoginController extends Controller {
13 12
 
14 13
     public function __construct()
15 14
     {
Please login to merge, or discard this patch.
app/Http/Controllers/Auth/RegisterController.php 2 patches
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -49,9 +49,9 @@  discard block
 block discarded – undo
49 49
     protected function validator(array $data)
50 50
     {
51 51
         return Validator::make($data, [
52
-            'name' => ['required', 'string', 'max:255'],
53
-            'email' => ['required', 'string', 'email', 'max:255', 'unique:users'],
54
-            'password' => ['required', 'string', 'min:8', 'confirmed'],
52
+            'name' => [ 'required', 'string', 'max:255' ],
53
+            'email' => [ 'required', 'string', 'email', 'max:255', 'unique:users' ],
54
+            'password' => [ 'required', 'string', 'min:8', 'confirmed' ],
55 55
         ]);
56 56
     }
57 57
 
@@ -64,9 +64,9 @@  discard block
 block discarded – undo
64 64
     protected function create(array $data)
65 65
     {
66 66
         return User::create([
67
-            'name' => $data['name'],
68
-            'email' => $data['email'],
69
-            'password' => Hash::make($data['password']),
67
+            'name' => $data[ 'name' ],
68
+            'email' => $data[ 'email' ],
69
+            'password' => Hash::make($data[ 'password' ]),
70 70
         ]);
71 71
     }
72 72
 }
Please login to merge, or discard this patch.
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -8,8 +8,7 @@
 block discarded – undo
8 8
 use Illuminate\Support\Facades\Validator;
9 9
 use Illuminate\Foundation\Auth\RegistersUsers;
10 10
 
11
-class RegisterController extends Controller
12
-{
11
+class RegisterController extends Controller {
13 12
     /*
14 13
     |--------------------------------------------------------------------------
15 14
     | Register Controller
Please login to merge, or discard this patch.
app/Http/Controllers/Auth/AdminLoginController.php 2 patches
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@  discard block
 block discarded – undo
34 34
             'password' => 'required|min:6'
35 35
         ]);
36 36
 
37
-        if($validate->fails()) {
37
+        if ($validate->fails()) {
38 38
             return redirect()->back()->withErrors($validate);
39 39
         }
40 40
 
@@ -44,7 +44,7 @@  discard block
 block discarded – undo
44 44
         ];
45 45
 
46 46
         // Attempt Login
47
-        if(Auth::guard('admin')->attempt($credentials, $request->remember)) {
47
+        if (Auth::guard('admin')->attempt($credentials, $request->remember)) {
48 48
             // If 'true' -> redirect to admin.index
49 49
             session([
50 50
                 'role' => 'Admin',
@@ -60,7 +60,7 @@  discard block
 block discarded – undo
60 60
     private function sendFailedLoginResponse(Request $request)
61 61
     {
62 62
         throw ValidationException::withMessages([
63
-            'email' => [trans('auth.failed')],
63
+            'email' => [ trans('auth.failed') ],
64 64
         ]);
65 65
     }
66 66
 
Please login to merge, or discard this patch.
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -8,8 +8,7 @@
 block discarded – undo
8 8
 use Illuminate\Support\Facades\Validator;
9 9
 use Illuminate\Validation\ValidationException;
10 10
 
11
-class AdminLoginController extends Controller
12
-{
11
+class AdminLoginController extends Controller {
13 12
 
14 13
     public function __construct()
15 14
     {
Please login to merge, or discard this patch.
app/Http/Controllers/MemberController.php 2 patches
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -15,12 +15,12 @@
 block discarded – undo
15 15
 
16 16
     public function index()
17 17
     {
18
-        $user = User::orderBy('name','asc')->paginate(10);
18
+        $user = User::orderBy('name', 'asc')->paginate(10);
19 19
         $data = [
20 20
             'role' => session('role'),
21 21
             'user' => $user,
22 22
         ];
23
-        return view('pages.member')->with('data',$data);
23
+        return view('pages.member')->with('data', $data);
24 24
     }
25 25
 
26 26
     /**
Please login to merge, or discard this patch.
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -5,8 +5,7 @@
 block discarded – undo
5 5
 use Illuminate\Http\Request;
6 6
 use App\User;
7 7
 
8
-class MemberController extends Controller
9
-{
8
+class MemberController extends Controller {
10 9
     /**
11 10
      * Display a listing of the resource.
12 11
      *
Please login to merge, or discard this patch.