Completed
Push — master ( 237430...8e6d70 )
by Ariel
06:33
created
src/Models/Appointment.php 1 patch
Doc Comments   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -81,7 +81,7 @@  discard block
 block discarded – undo
81 81
     /**
82 82
      * Get the issuer (the User that generated the Appointment).
83 83
      *
84
-     * @return Illuminate\Database\Eloquent\belongsTo
84
+     * @return \Illuminate\Database\Eloquent\Relations\BelongsTo
85 85
      */
86 86
     public function issuer()
87 87
     {
@@ -91,7 +91,7 @@  discard block
 block discarded – undo
91 91
     /**
92 92
      * Get the target Contact (for whom is reserved the Appointment).
93 93
      *
94
-     * @return Illuminate\Database\Eloquent\belongsTo
94
+     * @return \Illuminate\Database\Eloquent\Relations\BelongsTo
95 95
      */
96 96
     public function contact()
97 97
     {
@@ -101,7 +101,7 @@  discard block
 block discarded – undo
101 101
     /**
102 102
      * Get the holding Business (that has taken the reservation).
103 103
      *
104
-     * @return Illuminate\Database\Eloquent\belongsTo
104
+     * @return \Illuminate\Database\Eloquent\Relations\BelongsTo
105 105
      */
106 106
     public function business()
107 107
     {
@@ -111,7 +111,7 @@  discard block
 block discarded – undo
111 111
     /**
112 112
      * Get the reserved Service.
113 113
      *
114
-     * @return Illuminate\Database\Eloquent\belongsTo
114
+     * @return \Illuminate\Database\Eloquent\Relations\BelongsTo
115 115
      */
116 116
     public function service()
117 117
     {
@@ -122,7 +122,7 @@  discard block
 block discarded – undo
122 122
      * Get the Vacancy (that justifies the availability of resources for the
123 123
      * Appointment generation).
124 124
      *
125
-     * @return Illuminate\Database\Eloquent\belongsTo
125
+     * @return \Illuminate\Database\Eloquent\Relations\BelongsTo
126 126
      */
127 127
     public function vacancy()
128 128
     {
Please login to merge, or discard this patch.