Completed
Push — master ( 0d189e...e106c2 )
by Freek
02:42
created
src/CrawlQueue/CollectionCrawlQueue.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
     }
69 69
 
70 70
     /**
71
-     * @param CrawlUrl|\Psr\Http\Message\UriInterface|string $crawlUrl
71
+     * @param CrawlUrl $crawlUrl
72 72
      *
73 73
      * @return bool
74 74
      */
Please login to merge, or discard this patch.
src/CrawlObserver.php 1 patch
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -2,9 +2,9 @@
 block discarded – undo
2 2
 
3 3
 namespace Spatie\Crawler;
4 4
 
5
-use Psr\Http\Message\UriInterface;
6
-use Psr\Http\Message\ResponseInterface;
7 5
 use GuzzleHttp\Exception\RequestException;
6
+use Psr\Http\Message\ResponseInterface;
7
+use Psr\Http\Message\UriInterface;
8 8
 
9 9
 abstract class CrawlObserver
10 10
 {
Please login to merge, or discard this patch.
src/CrawlerProperties.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,10 +2,10 @@
 block discarded – undo
2 2
 
3 3
 namespace Spatie\Crawler;
4 4
 
5
-use Spatie\Robots\RobotsTxt;
6 5
 use Psr\Http\Message\UriInterface;
7 6
 use Spatie\Browsershot\Browsershot;
8 7
 use Spatie\Crawler\CrawlQueue\CrawlQueue;
8
+use Spatie\Robots\RobotsTxt;
9 9
 
10 10
 trait CrawlerProperties
11 11
 {
Please login to merge, or discard this patch.
src/CrawlerRobots.php 1 patch
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -2,9 +2,9 @@
 block discarded – undo
2 2
 
3 3
 namespace Spatie\Crawler;
4 4
 
5
-use Spatie\Robots\RobotsMeta;
6
-use Spatie\Robots\RobotsHeaders;
7 5
 use Psr\Http\Message\ResponseInterface;
6
+use Spatie\Robots\RobotsHeaders;
7
+use Spatie\Robots\RobotsMeta;
8 8
 
9 9
 class CrawlerRobots
10 10
 {
Please login to merge, or discard this patch.