@@ -61,6 +61,22 @@ public function activate(Composer $composer, IOInterface $io)
6161 }
6262 }
6363
64+ /**
65+ * {@inheritdoc}
66+ */
67+ public function deactivate (Composer $ composer , IOInterface $ io )
68+ {
69+
70+ }
71+
72+ /**
73+ * {@inheritdoc}
74+ */
75+ public function uninstall (Composer $ composer , IOInterface $ io )
76+ {
77+
78+ }
79+
6480 /**
6581 * {@inheritdoc}
6682 */
@@ -163,7 +179,7 @@ protected function doWriteInfoFiles(PackageInterface $package)
163179 );
164180 } elseif ($ this ->io ->isVerbose ()) {
165181 $ this ->io ->write (
166- '<info>No info files found for ' .$ package ->getPrettyName () . '</info> '
182+ '<info>No info files found for ' . $ package ->getPrettyName () . '</info> '
167183 );
168184 }
169185 }
@@ -178,7 +194,7 @@ protected function doRollback(PackageInterface $package)
178194 $ writer ->rollback ();
179195 } elseif ($ this ->io ->isVerbose ()) {
180196 $ this ->io ->write (
181- '<info>No info files found for ' .$ package ->getPrettyName () . '</info> '
197+ '<info>No info files found for ' . $ package ->getPrettyName () . '</info> '
182198 );
183199 }
184200 }
@@ -200,7 +216,7 @@ protected function getWriter(PackageInterface $package)
200216 /**
201217 * Find specific version info for a given package.
202218 *
203- * @param PackageInterface $package
219+ * @param PackageInterface $package
204220 * @return string
205221 */
206222 protected function findVersion (PackageInterface $ package )
@@ -219,7 +235,7 @@ protected function findVersion(PackageInterface $package)
219235 /**
220236 * Find a timestamp that the release is from in the package.
221237 *
222- * @param PackageInterface $package
238+ * @param PackageInterface $package
223239 * @return string
224240 * Unix timestamp.
225241 */
@@ -283,7 +299,7 @@ protected function findPackage(PackageInterface $package)
283299 /**
284300 * Determine if this package should be processed.
285301 *
286- * @param PackageInterface $package
302+ * @param PackageInterface $package
287303 * @return bool
288304 */
289305 protected function processPackage (PackageInterface $ package )
@@ -294,7 +310,7 @@ protected function processPackage(PackageInterface $package)
294310 /**
295311 * Gather the package from the given operation.
296312 *
297- * @param OperationInterface $operation
313+ * @param OperationInterface $operation
298314 * @return \Composer\Package\PackageInterface
299315 * @throws \Exception
300316 */
@@ -313,4 +329,5 @@ protected function getPackageFromOperation(OperationInterface $operation)
313329 }
314330 return $ package ;
315331 }
332+
316333}
0 commit comments