4fc895446cd4d6d0e67249d07e81c04ffbff67fd
[yaffs-website] / vendor / drush / drush / src / SiteAlias / HostPath.php
1 <?php
2 namespace Drush\SiteAlias;
3
4 /**
5  * A host path is a path on some machine. The machine may be specified
6  * by a label, and the label may be an @alias or a site specification.
7  * If there is no label, then the local machine is assumed.
8  *
9  * Examples:
10  *
11  *   @alias
12  *   @alias:/path
13  *   host:/path
14  *   user@host:/path
15  *   user@host/drupal-root#uri:/path
16  *   /path
17  *
18  * Note that /path does not have to begin with a '/'; it may
19  * be a relative path, or it may begin with a path alias,
20  * e.g. '%files'.
21  *
22  * It is permissible to have an alias or site specification
23  * without a path, but it is not valid to have just a host
24  * with no path.
25  */
26 class HostPath extends \Consolidation\SiteAlias\HostPath
27 {
28 }