Completed
Push — master ( 540322...4a8ccb )
by PROSPER
09:39 queued 10s
created
app/Http/Controllers/WebScrapingController.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@
 block discarded – undo
33 33
 
34 34
     /**
35 35
      * Scrape the Links
36
-     * @param $siteToCrawl
36
+     * @param string $siteToCrawl
37 37
      * @return array
38 38
      */
39 39
     public function getData($siteToCrawl)
Please login to merge, or discard this patch.
app/Http/Controllers/OauthController.php 1 patch
Doc Comments   +5 added lines, -2 removed lines patch added patch discarded remove patch
@@ -25,6 +25,9 @@  discard block
 block discarded – undo
25 25
         return $this->execute(($request->has('code') || $request->has('oauth_token')), $provider);
26 26
     }
27 27
 
28
+    /**
29
+     * @param boolean $request
30
+     */
28 31
     public function execute($request, $provider)
29 32
     {
30 33
         if (! $request) {
@@ -40,7 +43,7 @@  discard block
 block discarded – undo
40 43
     /**
41 44
      * Find a user by username or create a new user
42 45
      *
43
-     * @param $userData
46
+     * @param \Laravel\Socialite\Contracts\User $userData
44 47
      * @param $provider
45 48
      *
46 49
      * @return \App\User
@@ -130,7 +133,7 @@  discard block
 block discarded – undo
130 133
     /**
131 134
      * Get Data from Social Media Account
132 135
      * @param  string $provider
133
-     * @return collection
136
+     * @return \Laravel\Socialite\Contracts\User
134 137
      */
135 138
     private function getSocialUser($provider)
136 139
     {
Please login to merge, or discard this patch.