Completed
Pull Request — master (#28)
by
unknown
13:30
created
src/controller/ApiManagerController.php 1 patch
Doc Comments   +11 added lines patch added patch discarded remove patch
@@ -183,6 +183,9 @@  discard block
 block discarded – undo
183 183
         }
184 184
     }
185 185
 
186
+    /**
187
+     * @param string $model
188
+     */
186 189
     private function getWorkflow($model){
187 190
 			$data = WorkflowModel::where('content_type', 'like', '%' . $model . '%');
188 191
       return $data;
@@ -587,6 +590,14 @@  discard block
 block discarded – undo
587 590
       }
588 591
     }
589 592
 
593
+    /**
594
+     * @param boolean $error
595
+     * @param integer $statusCode
596
+     * @param string $title
597
+     * @param string $type
598
+     * @param string $message
599
+     * @param string $transition
600
+     */
590 601
     private function SendClient($client, $error, $statusCode, $title, $type, $message, $result, $state, $transition){
591 602
         if(Auth::guest()){ $current_user = 1; }
592 603
         else{ $current_user = Auth::user()->id; }
Please login to merge, or discard this patch.
src/controller/HostkeysController.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -59,7 +59,7 @@  discard block
 block discarded – undo
59 59
   /**
60 60
    * Store a newly created resource in storage.
61 61
    *
62
-   * @return Response
62
+   * @return \Illuminate\Http\JsonResponse
63 63
    */
64 64
   public function store(Request $request)
65 65
   {
@@ -210,7 +210,7 @@  discard block
 block discarded – undo
210 210
    * Update the specified resource in storage.
211 211
    *
212 212
    * @param  int  $id
213
-   * @return Response
213
+   * @return \Illuminate\Http\JsonResponse
214 214
    */
215 215
    public function update(Request $request, $id)
216 216
    {
Please login to merge, or discard this patch.