Completed
Push — master ( 9bcd5c...3e6d98 )
by Ricardo
04:07
created
src/Components/Processing/CalculeStat.php 1 patch
Unused Use Statements   -3 removed lines patch added patch discarded remove patch
@@ -2,9 +2,6 @@
 block discarded – undo
2 2
 
3 3
 namespace Finder\Components\Processing;
4 4
 
5
-use Log;
6
-use App\Models\User;
7
-
8 5
 class CalculeStat
9 6
 {
10 7
     
Please login to merge, or discard this patch.
src/Components/Processing/CollectDados.php 1 patch
Unused Use Statements   -3 removed lines patch added patch discarded remove patch
@@ -2,9 +2,6 @@
 block discarded – undo
2 2
 
3 3
 namespace Finder\Components\Processing;
4 4
 
5
-use Log;
6
-use App\Models\User;
7
-
8 5
 class CollectDados
9 6
 {
10 7
     
Please login to merge, or discard this patch.
src/Components/Processing/NewCommit.php 1 patch
Unused Use Statements   -3 removed lines patch added patch discarded remove patch
@@ -4,9 +4,6 @@
 block discarded – undo
4 4
 
5 5
 use App\Board;
6 6
 
7
-use Log;
8
-use App\Models\User;
9
-
10 7
 class NewCommit
11 8
 {
12 9
 
Please login to merge, or discard this patch.
src/Components/View/Boards/Board.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -221,6 +221,10 @@
 block discarded – undo
221 221
 
222 222
     }
223 223
 
224
+    /**
225
+     * @param string $cod
226
+     * @param integer $type
227
+     */
224 228
     protected static function insertBoard($cod, $classAfetada, $classAExecutar, $type)
225 229
     {
226 230
         $newBoard = new self($cod, $classAfetada, $classAExecutar, $type);
Please login to merge, or discard this patch.
src/Components/View/Boards/BusinessBoard.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -5,8 +5,6 @@
 block discarded – undo
5 5
 
6 6
 namespace Finder\Components\View\Boards;
7 7
 
8
-use Log;
9
-
10 8
 class BusinessBoard extends Board
11 9
 {
12 10
 
Please login to merge, or discard this patch.
src/Components/View/Editores/TuiImageEditor.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -5,8 +5,6 @@
 block discarded – undo
5 5
 
6 6
 namespace Finder\Components\View\Editores;
7 7
 
8
-use Log;
9
-
10 8
 class TuiImageEditor
11 9
 {
12 10
     
Please login to merge, or discard this patch.
src/Components/Worker/Explorer/Crawler.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -59,7 +59,7 @@
 block discarded – undo
59 59
      * Function to parse page for title tags
60 60
      *
61 61
      * @params string $data HTML of page
62
-     * @return string|bool title of page of null if not found
62
+     * @return string|null title of page of null if not found
63 63
      */
64 64
     public function getTitleFromHtml($data)
65 65
     {
Please login to merge, or discard this patch.
src/Components/Worker/Explorer/SpatieCrawler/SpatieCrawler.php 1 patch
Doc Comments   +7 added lines patch added patch discarded remove patch
@@ -52,6 +52,9 @@  discard block
 block discarded – undo
52 52
         $this->crawler->executeJavaScript();
53 53
     }
54 54
 
55
+    /**
56
+     * @param string $html
57
+     */
55 58
     protected function getAllLinks($html)
56 59
     {
57 60
         $domCrawler = new DomCrawler($html);
@@ -61,6 +64,10 @@  discard block
 block discarded – undo
61 64
                 ->extract(['href'])
62 65
         )
63 66
             ->map(
67
+
68
+                /**
69
+                 * @param string $url
70
+                 */
64 71
                 function ($url) {
65 72
                     return Url::create($url);
66 73
                 }
Please login to merge, or discard this patch.
src/Components/Worker/Explorer/Spider.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -144,6 +144,7 @@
 block discarded – undo
144 144
      *
145 145
      * @params int $form ID of linking page
146 146
      * @params int $to ID of target page
147
+     * @param boolean $to
147 148
      * @return int|bool LinkID on sucess, false on fail
148 149
      */
149 150
     protected function saveLink($from, $to)
Please login to merge, or discard this patch.