Completed
Push — master ( 02e25d...16bbe9 )
by Greg
01:28
created
src/AliasRecord.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -3,7 +3,6 @@
 block discarded – undo
3 3
 
4 4
 use Consolidation\Config\Config;
5 5
 use Consolidation\Config\ConfigInterface;
6
-use Consolidation\Config\Util\ArrayUtil;
7 6
 use Drush\Utils\FsUtils;
8 7
 
9 8
 /**
Please login to merge, or discard this patch.
src/HostPath.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -1,8 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 namespace Consolidation\SiteAlias;
3 3
 
4
-use Consolidation\Config\Config;
5
-use Consolidation\Config\ConfigInterface;
6 4
 use Webmozart\PathUtil\Path;
7 5
 
8 6
 /**
Please login to merge, or discard this patch.
src/SiteAliasFileLoader.php 1 patch
Doc Comments   +5 added lines, -2 removed lines patch added patch discarded remove patch
@@ -104,6 +104,7 @@  discard block
 block discarded – undo
104 104
 
105 105
     /**
106 106
      * Given only a site name, load the default environment from it.
107
+     * @param string|null $sitename
107 108
      */
108 109
     protected function loadDefaultEnvFromSitename($sitename)
109 110
     {
@@ -201,8 +202,8 @@  discard block
 block discarded – undo
201 202
     /**
202 203
      * @param array $siteData list of sites with its respective data
203 204
      *
204
-     * @param SiteAliasName $aliasName The name of the record being created
205 205
      * @param $siteData An associative array of envrionment => site data
206
+     * @param string $sitename
206 207
      * @return AliasRecord[]
207 208
      */
208 209
     protected function createAliasRecordsFromSiteData($sitename, $siteData, $location = '')
@@ -357,7 +358,6 @@  discard block
 block discarded – undo
357 358
     /**
358 359
      * Given an array of site aliases, find the first one that is
359 360
      * local (has no 'host' item) and also contains a 'self.site.yml' file.
360
-     * @param array $data
361 361
      * @return array
362 362
      */
363 363
     protected function findSelfSiteAliases($site_aliases)
@@ -404,6 +404,9 @@  discard block
 block discarded – undo
404 404
         return $this->loader[$extension];
405 405
     }
406 406
 
407
+    /**
408
+     * @param string $extension
409
+     */
407 410
     public function addLoader($extension, DataFileLoaderInterface $loader)
408 411
     {
409 412
         $this->loader[$extension] = $loader;
Please login to merge, or discard this patch.
src/SiteAliasName.php 1 patch
Doc Comments   +2 added lines, -3 removed lines patch added patch discarded remove patch
@@ -80,7 +80,7 @@  discard block
 block discarded – undo
80 80
      * are defined by the alias contents.
81 81
      *
82 82
      * @param type $path
83
-     * @return type
83
+     * @return string
84 84
      */
85 85
     public static function locationFromPath($path)
86 86
     {
@@ -315,8 +315,7 @@  discard block
 block discarded – undo
315 315
     /**
316 316
      * Process an alias name provided as '@sitename'.
317 317
      *
318
-     * @param string $sitename
319
-     * @return true
318
+     * @return boolean
320 319
      */
321 320
     protected function processSingleItem($item)
322 321
     {
Please login to merge, or discard this patch.
src/SiteAliasFileDiscovery.php 1 patch
Doc Comments   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@  discard block
 block discarded – undo
36 36
     /**
37 37
      * Add a location that alias files may be found.
38 38
      *
39
-     * @param string $path
39
+     * @param string $paths
40 40
      * @return $this
41 41
      */
42 42
     public function addSearchLocation($paths)
@@ -78,6 +78,7 @@  discard block
 block discarded – undo
78 78
     /**
79 79
      * Only search for aliases that are in alias files stored in directories
80 80
      * whose basename or key matches the specified location.
81
+     * @param string|null $location
81 82
      */
82 83
     public function filterByLocation($location)
83 84
     {
@@ -105,7 +106,7 @@  discard block
 block discarded – undo
105 106
      * of the specified search locations.
106 107
      *
107 108
      * @param string $siteName
108
-     * @return string|bool
109
+     * @return false|string
109 110
      */
110 111
     public function findSingleSiteAliasFile($siteName)
111 112
     {
Please login to merge, or discard this patch.