Completed
Branch dev (c992ef)
by Darko
06:17
created
nntmux/Console.php 2 patches
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -589,7 +589,7 @@  discard block
 block discarded – undo
589 589
     }
590 590
 
591 591
     /**
592
-     * @param $genreName
592
+     * @param boolean|string $genreName
593 593
      * @return false|int|string
594 594
      * @throws \Exception
595 595
      */
@@ -947,7 +947,7 @@  discard block
 block discarded – undo
947 947
     }
948 948
 
949 949
     /**
950
-     * @param $platform
950
+     * @param string $platform
951 951
      *
952 952
      * @return string
953 953
      */
@@ -1019,7 +1019,7 @@  discard block
 block discarded – undo
1019 1019
     }
1020 1020
 
1021 1021
     /**
1022
-     * @param $nodeName
1022
+     * @param string $nodeName
1023 1023
      *
1024 1024
      * @return bool|string
1025 1025
      */
Please login to merge, or discard this patch.
Unused Use Statements   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -2,19 +2,19 @@
 block discarded – undo
2 2
 
3 3
 namespace nntmux;
4 4
 
5
-use nntmux\db\DB;
6 5
 use ApaiIO\ApaiIO;
7
-use GuzzleHttp\Client;
8
-use App\Models\Release;
6
+use ApaiIO\Configuration\GenericConfiguration;
7
+use ApaiIO\Operations\Search;
8
+use ApaiIO\Request\GuzzleRequest;
9
+use ApaiIO\ResponseTransformer\XmlToSimpleXmlObject;
9 10
 use App\Models\Category;
10
-use App\Models\Settings;
11 11
 use App\Models\ConsoleInfo;
12
-use ApaiIO\Operations\Search;
12
+use App\Models\Release;
13
+use App\Models\Settings;
14
+use GuzzleHttp\Client;
13 15
 use Illuminate\Support\Carbon;
14
-use ApaiIO\Request\GuzzleRequest;
15 16
 use Illuminate\Support\Facades\Cache;
16
-use ApaiIO\Configuration\GenericConfiguration;
17
-use ApaiIO\ResponseTransformer\XmlToSimpleXmlObject;
17
+use nntmux\db\DB;
18 18
 
19 19
 /**
20 20
  * Class Console.
Please login to merge, or discard this patch.
nntmux/Movie.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -609,7 +609,7 @@
 block discarded – undo
609 609
     /**
610 610
      * Fetch IMDB/TMDB/TRAKT info for the movie.
611 611
      *
612
-     * @param $imdbId
612
+     * @param string $imdbId
613 613
      *
614 614
      * @return bool
615 615
      * @throws \Exception
Please login to merge, or discard this patch.
Unused Use Statements   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -2,22 +2,22 @@
 block discarded – undo
2 2
 
3 3
 namespace nntmux;
4 4
 
5
-use nntmux\db\DB;
6
-use Tmdb\ApiToken;
7
-use aharen\OMDbAPI;
8
-use GuzzleHttp\Client;
9
-use App\Models\Release;
10 5
 use App\Models\Category;
11
-use App\Models\Settings;
12 6
 use App\Models\MovieInfo;
13
-use nntmux\utility\Utility;
7
+use App\Models\Release;
8
+use App\Models\Settings;
9
+use GuzzleHttp\Client;
10
+use GuzzleHttp\Exception\RequestException;
14 11
 use Illuminate\Support\Carbon;
15
-use nntmux\libraries\FanartTV;
12
+use Illuminate\Support\Facades\Cache;
13
+use Tmdb\ApiToken;
16 14
 use Tmdb\Client as TmdbClient;
17
-use nntmux\processing\tv\TraktTv;
18 15
 use Tmdb\Exception\TmdbApiException;
19
-use Illuminate\Support\Facades\Cache;
20
-use GuzzleHttp\Exception\RequestException;
16
+use aharen\OMDbAPI;
17
+use nntmux\db\DB;
18
+use nntmux\libraries\FanartTV;
19
+use nntmux\processing\tv\TraktTv;
20
+use nntmux\utility\Utility;
21 21
 
22 22
 /**
23 23
  * Class Movie.
Please login to merge, or discard this patch.
nntmux/db/populate/AniDB.php 1 patch
Unused Use Statements   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -2,13 +2,13 @@
 block discarded – undo
2 2
 
3 3
 namespace nntmux\db\populate;
4 4
 
5
-use nntmux\ColorCLI;
6
-use App\Models\Settings;
7
-use nntmux\ReleaseImage;
5
+use App\Models\AnidbEpisode;
8 6
 use App\Models\AnidbInfo;
9 7
 use App\Models\AnidbTitle;
10
-use App\Models\AnidbEpisode;
8
+use App\Models\Settings;
11 9
 use Illuminate\Support\Carbon;
10
+use nntmux\ColorCLI;
11
+use nntmux\ReleaseImage;
12 12
 
13 13
 class AniDB
14 14
 {
Please login to merge, or discard this patch.
nntmux/IRCScraper.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,8 +2,8 @@
 block discarded – undo
2 2
 
3 3
 namespace nntmux;
4 4
 
5
-use nntmux\db\DB;
6 5
 use App\Models\Predb;
6
+use nntmux\db\DB;
7 7
 
8 8
 /**
9 9
  * Class IRCScraper.
Please login to merge, or discard this patch.
app/Console/Commands/FixturesUp.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -3,7 +3,6 @@
 block discarded – undo
3 3
 namespace App\Console\Commands;
4 4
 
5 5
 use Illuminate\Console\Command;
6
-use Mayconbordin\L5Fixtures\Fixtures;
7 6
 use Mayconbordin\L5Fixtures\FixturesFacade;
8 7
 
9 8
 class FixturesUp extends Command
Please login to merge, or discard this patch.
app/Console/Commands/InstallNntmux.php 1 patch
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -2,10 +2,10 @@
 block discarded – undo
2 2
 
3 3
 namespace App\Console\Commands;
4 4
 
5
-use App\Models\User;
5
+use App\Extensions\util\Versions;
6 6
 use App\Models\Settings;
7
+use App\Models\User;
7 8
 use Illuminate\Console\Command;
8
-use App\Extensions\util\Versions;
9 9
 use Symfony\Component\Process\Process;
10 10
 
11 11
 class InstallNntmux extends Command
Please login to merge, or discard this patch.
app/Console/Commands/NntmuxResetDb.php 1 patch
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -4,11 +4,11 @@
 block discarded – undo
4 4
 
5 5
 use App\Models\Group;
6 6
 use App\Models\Settings;
7
-use nntmux\SphinxSearch;
8
-use Illuminate\Support\Carbon;
9 7
 use Illuminate\Console\Command;
8
+use Illuminate\Support\Carbon;
10 9
 use Illuminate\Support\Facades\DB;
11 10
 use Illuminate\Support\Facades\File;
11
+use nntmux\SphinxSearch;
12 12
 
13 13
 class NntmuxResetDb extends Command
14 14
 {
Please login to merge, or discard this patch.
app/Http/Controllers/Auth/RegisterController.php 1 patch
Unused Use Statements   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -2,12 +2,12 @@
 block discarded – undo
2 2
 
3 3
 namespace App\Http\Controllers\Auth;
4 4
 
5
-use App\Models\User;
6
-use nntmux\utility\Utility;
7 5
 use App\Http\Controllers\Controller;
6
+use App\Models\User;
7
+use Illuminate\Foundation\Auth\RegistersUsers;
8 8
 use Illuminate\Support\Facades\Password;
9 9
 use Illuminate\Support\Facades\Validator;
10
-use Illuminate\Foundation\Auth\RegistersUsers;
10
+use nntmux\utility\Utility;
11 11
 
12 12
 class RegisterController extends Controller
13 13
 {
Please login to merge, or discard this patch.
app/Models/Category.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,9 +2,9 @@
 block discarded – undo
2 2
 
3 3
 namespace App\Models;
4 4
 
5
+use Illuminate\Database\Eloquent\Model;
5 6
 use Illuminate\Support\Carbon;
6 7
 use Illuminate\Support\Facades\Cache;
7
-use Illuminate\Database\Eloquent\Model;
8 8
 
9 9
 class Category extends Model
10 10
 {
Please login to merge, or discard this patch.