Completed
Push — master ( 3ddd31...37dcf7 )
by Andrii
02:11
created
src/Plugin.php 2 patches
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -193,6 +193,7 @@
 block discarded – undo
193 193
      * Prepare aliases.
194 194
      * @param PackageInterface $package
195 195
      * @param string 'psr-0' or 'psr-4'
196
+     * @param string $psr
196 197
      * @return array
197 198
      */
198 199
     protected function prepareAliases(PackageInterface $package, $psr, $dev = false)
Please login to merge, or discard this patch.
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,6 @@
 block discarded – undo
20 20
 use Composer\Script\Event;
21 21
 use Composer\Script\ScriptEvents;
22 22
 use Composer\Util\Filesystem;
23
-use Symfony\Component\Console\Formatter\OutputFormatterStyle;
24 23
 
25 24
 /**
26 25
  * Plugin class.
Please login to merge, or discard this patch.
src/Builder.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -270,6 +270,9 @@
 block discarded – undo
270 270
         return $skippable . $result;
271 271
     }
272 272
 
273
+    /**
274
+     * @param string $name
275
+     */
273 276
     public function loadConfig($name)
274 277
     {
275 278
         return $this->loadFile($this->getOutputPath($name));
Please login to merge, or discard this patch.
src/ReaderFactory.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -33,6 +33,9 @@
 block discarded – undo
33 33
         'yml'   => YamlReader::class,
34 34
     ];
35 35
 
36
+    /**
37
+     * @param string $path
38
+     */
36 39
     public static function get($path)
37 40
     {
38 41
         $ext = pathinfo($path, PATHINFO_EXTENSION);
Please login to merge, or discard this patch.