Completed
Branch develop (9458df)
by Thorsten
05:39
created
src/View/RemoteTemplateFinder.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -318,7 +318,7 @@
 block discarded – undo
318 318
     /**
319 319
      * Call handler if any defined.
320 320
      *
321
-     * @param ResponseInterface|\Illuminate\Http\Response $result
321
+     * @param ResponseInterface $result
322 322
      * @param array $remoteHost
323 323
      *
324 324
      * @return ResponseInterface|\Illuminate\Http\Response|Response
Please login to merge, or discard this patch.
Unused Use Statements   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -4,18 +4,18 @@
 block discarded – undo
4 4
 
5 5
 use Closure;
6 6
 use Exception;
7
-use RuntimeException;
8 7
 use GuzzleHttp\Client;
9
-use Illuminate\Support\Str;
10 8
 use GuzzleHttp\Psr7\Response;
11
-use InvalidArgumentException;
9
+use Illuminate\Contracts\Config\Repository;
12 10
 use Illuminate\Filesystem\Filesystem;
11
+use Illuminate\Support\Str;
12
+use InvalidArgumentException;
13 13
 use Psr\Http\Message\ResponseInterface;
14
-use Illuminate\Contracts\Config\Repository;
15
-use Schnoop\RemoteTemplate\Exceptions\UrlIsForbiddenException;
14
+use RuntimeException;
16 15
 use Schnoop\RemoteTemplate\Exceptions\IgnoredUrlSuffixException;
17
-use Schnoop\RemoteTemplate\Exceptions\RemoteTemplateNotFoundException;
18 16
 use Schnoop\RemoteTemplate\Exceptions\RemoteHostNotConfiguredException;
17
+use Schnoop\RemoteTemplate\Exceptions\RemoteTemplateNotFoundException;
18
+use Schnoop\RemoteTemplate\Exceptions\UrlIsForbiddenException;
19 19
 
20 20
 /**
21 21
  * Class RemoteTemplateFinder.
Please login to merge, or discard this patch.