@@ -37,7 +37,7 @@ discard block |
||
37 | 37 | */ |
38 | 38 | public function create(Request $request) |
39 | 39 | { |
40 | - if (! \defined('STDOUT')) { |
|
40 | + if (!\defined('STDOUT')) { |
|
41 | 41 | \define('STDOUT', fopen('php://stdout', 'wb')); |
42 | 42 | } |
43 | 43 | $this->setAdminPrefs(); |
@@ -108,7 +108,7 @@ discard block |
||
108 | 108 | if ($_FILES['cover']['size'] > 0) { |
109 | 109 | $tmpName = $_FILES['cover']['tmp_name']; |
110 | 110 | $file_info = getimagesize($tmpName); |
111 | - if (! empty($file_info)) { |
|
111 | + if (!empty($file_info)) { |
|
112 | 112 | move_uploaded_file($_FILES['cover']['tmp_name'], $coverLoc); |
113 | 113 | } |
114 | 114 | } |
@@ -116,7 +116,7 @@ discard block |
||
116 | 116 | if ($_FILES['backdrop']['size'] > 0) { |
117 | 117 | $tmpName = $_FILES['backdrop']['tmp_name']; |
118 | 118 | $file_info = getimagesize($tmpName); |
119 | - if (! empty($file_info)) { |
|
119 | + if (!empty($file_info)) { |
|
120 | 120 | move_uploaded_file($_FILES['backdrop']['tmp_name'], $backdropLoc); |
121 | 121 | } |
122 | 122 | } |
@@ -48,7 +48,7 @@ discard block |
||
48 | 48 | $id = $request->input('id'); |
49 | 49 | $mus = $music->getMusicInfo($id); |
50 | 50 | |
51 | - if (! $mus) { |
|
51 | + if (!$mus) { |
|
52 | 52 | $this->show404(); |
53 | 53 | } |
54 | 54 | |
@@ -59,14 +59,14 @@ discard block |
||
59 | 59 | if ($_FILES['cover']['size'] > 0) { |
60 | 60 | $tmpName = $_FILES['cover']['tmp_name']; |
61 | 61 | $file_info = getimagesize($tmpName); |
62 | - if (! empty($file_info)) { |
|
62 | + if (!empty($file_info)) { |
|
63 | 63 | move_uploaded_file($_FILES['cover']['tmp_name'], $coverLoc); |
64 | 64 | } |
65 | 65 | } |
66 | 66 | |
67 | 67 | $request->merge(['cover' => file_exists($coverLoc) ? 1 : 0]); |
68 | - $request->merge(['salesrank' => (empty($request->input('salesrank')) || ! ctype_digit($request->input('salesrank'))) ? 'null' : $request->input('salesrank')]); |
|
69 | - $request->merge(['releasedate' => (empty($request->input('releasedate')) || ! strtotime($request->input('releasedate'))) ? $mus['releasedate'] : Carbon::parse($request->input('releasedate'))->timestamp]); |
|
68 | + $request->merge(['salesrank' => (empty($request->input('salesrank')) || !ctype_digit($request->input('salesrank'))) ? 'null' : $request->input('salesrank')]); |
|
69 | + $request->merge(['releasedate' => (empty($request->input('releasedate')) || !strtotime($request->input('releasedate'))) ? $mus['releasedate'] : Carbon::parse($request->input('releasedate'))->timestamp]); |
|
70 | 70 | |
71 | 71 | $music->update($id, $request->input('title'), $request->input('asin'), $request->input('url'), $request->input('salesrank'), $request->input('artist'), $request->input('publisher'), $request->input('releasedate'), $request->input('year'), $request->input('tracks'), $request->input('cover'), $request->input('genre')); |
72 | 72 |
@@ -20,7 +20,7 @@ discard block |
||
20 | 20 | $title = $meta_title = 'AniDB List'; |
21 | 21 | |
22 | 22 | $aname = ''; |
23 | - if ($request->has('animetitle') && ! empty($request->input('animetitle'))) { |
|
23 | + if ($request->has('animetitle') && !empty($request->input('animetitle'))) { |
|
24 | 24 | $aname = $request->input('animetitle'); |
25 | 25 | } |
26 | 26 | |
@@ -73,7 +73,7 @@ discard block |
||
73 | 73 | |
74 | 74 | case 'view': |
75 | 75 | default: |
76 | - if (! empty($id)) { |
|
76 | + if (!empty($id)) { |
|
77 | 77 | $this->title = 'AniDB Edit'; |
78 | 78 | $AniDBAPIArray = $AniDB->getAnimeInfo($id); |
79 | 79 | $this->smarty->assign('anime', $AniDBAPIArray); |
@@ -179,7 +179,7 @@ |
||
179 | 179 | ]); |
180 | 180 | |
181 | 181 | $role = User::ROLE_USER; |
182 | - if (! empty($this->userdata)) { |
|
182 | + if (!empty($this->userdata)) { |
|
183 | 183 | $role = $this->userdata->roles_id; |
184 | 184 | } |
185 | 185 |
@@ -57,13 +57,13 @@ |
||
57 | 57 | $movies[] = $result; |
58 | 58 | } |
59 | 59 | |
60 | - $title = ($request->has('title') && ! empty($request->input('title'))) ? stripslashes($request->input('title')) : ''; |
|
60 | + $title = ($request->has('title') && !empty($request->input('title'))) ? stripslashes($request->input('title')) : ''; |
|
61 | 61 | $this->smarty->assign('title', stripslashes($title)); |
62 | 62 | |
63 | - $actors = ($request->has('actors') && ! empty($request->input('actors'))) ? stripslashes($request->input('actors')) : ''; |
|
63 | + $actors = ($request->has('actors') && !empty($request->input('actors'))) ? stripslashes($request->input('actors')) : ''; |
|
64 | 64 | $this->smarty->assign('actors', $actors); |
65 | 65 | |
66 | - $director = ($request->has('director') && ! empty($request->input('director'))) ? stripslashes($request->input('director')) : ''; |
|
66 | + $director = ($request->has('director') && !empty($request->input('director'))) ? stripslashes($request->input('director')) : ''; |
|
67 | 67 | $this->smarty->assign('director', $director); |
68 | 68 | |
69 | 69 | $genres = $adult->getAllGenres(true); |
@@ -16,7 +16,7 @@ |
||
16 | 16 | if ($request->has('action') && (int) $request->input('action') === 1 && $request->has('emailto')) { |
17 | 17 | $emailTo = $request->input('emailto'); |
18 | 18 | $ret = User::sendInvite(url('/'), $this->userdata->id, $emailTo); |
19 | - if (! $ret) { |
|
19 | + if (!$ret) { |
|
20 | 20 | echo 'Invite not sent.'; |
21 | 21 | } else { |
22 | 22 | echo 'Invite sent. Alternatively paste them following link to register - '.$ret; |
@@ -38,9 +38,9 @@ discard block |
||
38 | 38 | |
39 | 39 | $show = Video::getByVideoID($id); |
40 | 40 | |
41 | - if (! $show) { |
|
41 | + if (!$show) { |
|
42 | 42 | $this->smarty->assign('nodata', 'No video information for this series.'); |
43 | - } elseif (! $rel) { |
|
43 | + } elseif (!$rel) { |
|
44 | 44 | $this->smarty->assign('nodata', 'No releases for this series.'); |
45 | 45 | } else { |
46 | 46 | $myshows = UserSerie::getShow($this->userdata->id, $show['id']); |
@@ -67,11 +67,11 @@ discard block |
||
67 | 67 | $seriestitles = $seriessummary = $seriescountry = []; |
68 | 68 | $seriestitles[] = $show['title']; |
69 | 69 | |
70 | - if (! empty($show['summary'])) { |
|
70 | + if (!empty($show['summary'])) { |
|
71 | 71 | $seriessummary[] = $show['summary']; |
72 | 72 | } |
73 | 73 | |
74 | - if (! empty($show['countries_id'])) { |
|
74 | + if (!empty($show['countries_id'])) { |
|
75 | 75 | $seriescountry[] = $show['countries_id']; |
76 | 76 | } |
77 | 77 | |
@@ -105,9 +105,9 @@ discard block |
||
105 | 105 | } else { |
106 | 106 | $letter = ($id && preg_match('/^(0\-9|[A-Z])$/i', $id)) ? $id : '0-9'; |
107 | 107 | |
108 | - $showname = ($request->has('title') && ! empty($request->input('title'))) ? $request->input('title') : ''; |
|
108 | + $showname = ($request->has('title') && !empty($request->input('title'))) ? $request->input('title') : ''; |
|
109 | 109 | |
110 | - if ($showname !== '' && ! $id) { |
|
110 | + if ($showname !== '' && !$id) { |
|
111 | 111 | $letter = ''; |
112 | 112 | } |
113 | 113 |
@@ -34,7 +34,7 @@ discard block |
||
34 | 34 | } |
35 | 35 | |
36 | 36 | $res = User::getByRssToken($request->input('r')); |
37 | - if (! $res) { |
|
37 | + if (!$res) { |
|
38 | 38 | return Utility::showApiError(100); |
39 | 39 | } |
40 | 40 | |
@@ -52,7 +52,7 @@ discard block |
||
52 | 52 | return Utility::showApiError(501); |
53 | 53 | } |
54 | 54 | |
55 | - if (! $request->input('id')) { |
|
55 | + if (!$request->input('id')) { |
|
56 | 56 | return Utility::showApiError(200, 'Parameter id is required'); |
57 | 57 | } |
58 | 58 | |
@@ -86,7 +86,7 @@ discard block |
||
86 | 86 | |
87 | 87 | $nzbPath = (new NZB())->getNZBPath($request->input('id')); |
88 | 88 | |
89 | - if (! File::exists($nzbPath)) { |
|
89 | + if (!File::exists($nzbPath)) { |
|
90 | 90 | return Utility::showApiError(300, 'NZB file not found!'); |
91 | 91 | } |
92 | 92 | |
@@ -112,9 +112,9 @@ discard block |
||
112 | 112 | 'X-DNZB-Details' => url('/').'/details/'.$request->input('id'), |
113 | 113 | ]; |
114 | 114 | |
115 | - if (! empty($relData['imdbid']) && $relData['imdbid'] > 0) { |
|
115 | + if (!empty($relData['imdbid']) && $relData['imdbid'] > 0) { |
|
116 | 116 | $headers += ['X-DNZB-MoreInfo' => 'http://www.imdb.com/title/tt'.$relData['imdbid']]; |
117 | - } elseif (! empty($relData['tvdb']) && $relData['tvdb'] > 0) { |
|
117 | + } elseif (!empty($relData['tvdb']) && $relData['tvdb'] > 0) { |
|
118 | 118 | $headers += ['X-DNZB-MoreInfo' => 'http://www.thetvdb.com/?tab=series&id='.$relData['tvdb']]; |
119 | 119 | } |
120 | 120 | |
@@ -125,7 +125,7 @@ discard block |
||
125 | 125 | $headers += ['X-DNZB-RCode' => '200', |
126 | 126 | 'X-DNZB-RText' => 'OK, NZB content follows.', ]; |
127 | 127 | |
128 | - return response()->streamDownload(function () use ($nzbPath) { |
|
128 | + return response()->streamDownload(function() use ($nzbPath) { |
|
129 | 129 | readgzfile($nzbPath); |
130 | 130 | }, $cleanName.'.nzb', $headers); |
131 | 131 | } |
@@ -55,7 +55,7 @@ |
||
55 | 55 | */ |
56 | 56 | public function deleteTitle(int $anidbID): void |
57 | 57 | { |
58 | - DB::transaction(function () use ($anidbID) { |
|
58 | + DB::transaction(function() use ($anidbID) { |
|
59 | 59 | DB::delete( |
60 | 60 | sprintf( |
61 | 61 | ' |