Completed
Push — master ( 848d68...3404b3 )
by Taavo-Taur
05:53
created
app/controllers/LeagueAdminController.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -159,7 +159,6 @@
 block discarded – undo
159 159
 	 * Get moves that can be added by the league, optionally filtered by ID's
160 160
 	 *
161 161
 	 * @param League $league
162
-	 * @param array  $ids
163 162
 	 *
164 163
 	 * @return array
165 164
 	 */
Please login to merge, or discard this patch.
app/workers/MovieScraperWorker.php 1 patch
Doc Comments   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -48,7 +48,7 @@  discard block
 block discarded – undo
48 48
 	/**
49 49
 	 * Get the upcoming movies
50 50
 	 *
51
-	 * @return Collection|array[]
51
+	 * @return Collection
52 52
 	 */
53 53
 	private function getMovies() {
54 54
 		// Limit the scraped movie release date to the max length of the league
@@ -92,7 +92,6 @@  discard block
 block discarded – undo
92 92
 	/**
93 93
 	 * Scan database for new movies and add them to the database
94 94
 	 *
95
-	 * @param Collection $movies
96 95
 	 */
97 96
 	private function scanDatabaseForChanges(Collection $new_data) {
98 97
 		$new_data = $new_data->keyBy('boxoffice_id');
Please login to merge, or discard this patch.
app/commands/ScrapeEarningsCommand.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -97,7 +97,7 @@  discard block
 block discarded – undo
97 97
 
98 98
 	/**
99 99
 	 * User to run the command as
100
-	 * @return string Defaults to false to run as default user
100
+	 * @return boolean Defaults to false to run as default user
101 101
 	 */
102 102
 	public function user() {
103 103
 		return false;
@@ -125,7 +125,7 @@  discard block
 block discarded – undo
125 125
 	/**
126 126
 	 * Environment(s) under which the given command should run
127 127
 	 * Defaults to '*' for all environments
128
-	 * @return string|array
128
+	 * @return string
129 129
 	 */
130 130
 	public function environment() {
131 131
 		return '*';
Please login to merge, or discard this patch.