Completed
Pull Request — master (#27041)
by Thomas
50:02
created
core/Command/Db/Migrations/GenerateCommand.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -126,6 +126,9 @@
 block discarded – undo
126 126
 
127 127
 	}
128 128
 
129
+	/**
130
+	 * @param string $version
131
+	 */
129 132
 	private function generateMigration(MigrationConfiguration $configuration, $version, $kind) {
130 133
 		$placeHolders = [
131 134
 			'<namespace>',
Please login to merge, or discard this patch.
core/Command/Db/Migrations/StatusCommand.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -89,6 +89,9 @@
 block discarded – undo
89 89
 		return $infos;
90 90
 	}
91 91
 
92
+	/**
93
+	 * @param string $alias
94
+	 */
92 95
 	private function getFormattedVersionAlias(MigrationConfiguration $configuration, $alias) {
93 96
 		$migration = $configuration->getMigration($alias);
94 97
 		//No version found
Please login to merge, or discard this patch.
lib/private/DB/MigrationConfiguration.php 1 patch
Doc Comments   +9 added lines patch added patch discarded remove patch
@@ -37,6 +37,9 @@  discard block
 block discarded – undo
37 37
 	/** @var IOutput */
38 38
 	private $output;
39 39
 
40
+	/**
41
+	 * @param string $appName
42
+	 */
40 43
 	function __construct($appName, Connection $connection, IOutput $output = null) {
41 44
 		$this->appName = $appName;
42 45
 		$this->connection = $connection;
@@ -175,6 +178,9 @@  discard block
 block discarded – undo
175 178
 		return $migrations;
176 179
 	}
177 180
 
181
+	/**
182
+	 * @param string $to
183
+	 */
178 184
 	public function getMigrationsToExecute($to) {
179 185
 		$knownMigrations = $this->getMigratedVersions();
180 186
 		$availableMigrations = $this->getAvailableVersions();
@@ -237,6 +243,9 @@  discard block
 block discarded – undo
237 243
 		return '0';
238 244
 	}
239 245
 
246
+	/**
247
+	 * @param integer $delta
248
+	 */
240 249
 	public function getRelativeVersion($version, $delta) {
241 250
 		if (empty($this->migrations)) {
242 251
 			$this->migrations = $this->findMigrations($this->migrationsPath, $this->migrationsNamespace);
Please login to merge, or discard this patch.
lib/private/Migration/SimpleOutput.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -69,7 +69,6 @@
 block discarded – undo
69 69
 	}
70 70
 
71 71
 	/**
72
-	 * @param int $max
73 72
 	 * @since 9.1.0
74 73
 	 */
75 74
 	public function finishProgress() {
Please login to merge, or discard this patch.