Completed
Push — master ( 3e6d98...08a8d6 )
by Ricardo
04:32
created
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.
src/Components/Worker/Logging/_old/Feedcreator.php 1 patch
Doc Comments   +10 added lines, -2 removed lines patch added patch discarded remove patch
@@ -208,6 +208,9 @@  discard block
 block discarded – undo
208 208
 
209 209
     var $_feed;
210 210
 
211
+    /**
212
+     * @param string $format
213
+     */
211 214
     function _setMIME($format)
212 215
     {
213 216
         switch (strtoupper($format)) {
@@ -234,6 +237,9 @@  discard block
 block discarded – undo
234 237
         }
235 238
     }
236 239
 
240
+    /**
241
+     * @param string $format
242
+     */
237 243
     function _setFormat($format)
238 244
     {
239 245
         switch (strtoupper($format)) {
@@ -387,6 +393,7 @@  discard block
 block discarded – undo
387 393
      * @static
388 394
      * @param  string    string A string to be truncated.
389 395
      * @param  int        length the maximum length the string should be truncated to
396
+     * @param integer $length
390 397
      * @return string    the truncated string
391 398
      */
392 399
     function iTrunc($string, $length)
@@ -602,7 +609,7 @@  discard block
 block discarded – undo
602 609
     /**
603 610
      * Gets the date stored in this FeedDate as an RFC 822 date.
604 611
      *
605
-     * @return a date in RFC 822 format
612
+     * @return string date in RFC 822 format
606 613
      */
607 614
     function rfc822()
608 615
     {
@@ -614,7 +621,7 @@  discard block
 block discarded – undo
614 621
     /**
615 622
      * Gets the date stored in this FeedDate as an ISO 8601 date.
616 623
      *
617
-     * @return a date in ISO 8601 (RFC 3339) format
624
+     * @return string date in ISO 8601 (RFC 3339) format
618 625
      */
619 626
     function iso8601()
620 627
     {
@@ -665,6 +672,7 @@  discard block
 block discarded – undo
665 672
      * Sets this RSS feed's version number.
666 673
      *
667 674
      * @access private
675
+     * @param string $version
668 676
      */
669 677
     function _setRSSVersion($version)
670 678
     {
Please login to merge, or discard this patch.