Scrutinizer GitHub App not installed

We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.

Install GitHub App

Completed
Branch master (f5b2f7)
by Cristian
04:05
created
src/app/Http/Controllers/CrudController.php 1 patch
Doc Comments   +3 added lines, -4 removed lines patch added patch discarded remove patch
@@ -110,7 +110,7 @@  discard block
 block discarded – undo
110 110
 	/**
111 111
 	 * Store a newly created resource in the database.
112 112
 	 *
113
-	 * @return Response
113
+	 * @return \Illuminate\Http\RedirectResponse|null
114 114
 	 */
115 115
 	public function storeCrud(StoreRequest $request = null)
116 116
 	{
@@ -187,8 +187,7 @@  discard block
 block discarded – undo
187 187
 	/**
188 188
 	 * Update the specified resource in the database.
189 189
 	 *
190
-	 * @param  int  $id
191
-	 * @return Response
190
+	 * @return \Illuminate\Http\RedirectResponse
192 191
 	 */
193 192
 	public function updateCrud(UpdateRequest $request = null)
194 193
 	{
@@ -242,7 +241,7 @@  discard block
 block discarded – undo
242 241
 	 * Remove the specified resource from storage.
243 242
 	 *
244 243
 	 * @param  int  $id
245
-	 * @return Response
244
+	 * @return string
246 245
 	 */
247 246
 	public function destroy($id)
248 247
 	{
Please login to merge, or discard this patch.
src/CrudTrait.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -68,7 +68,7 @@
 block discarded – undo
68 68
      * Return the entity with fake fields as attributes.
69 69
      *
70 70
      * @param  array  $columns - the database columns that contain the JSONs
71
-     * @return obj
71
+     * @return CrudTrait
72 72
      */
73 73
     public function withFakes($columns = [])
74 74
     {
Please login to merge, or discard this patch.