| 1 | <?php | ||
| 10 | class SSH2None implements SSH2AuthInterface | ||
| 11 | { | ||
| 12 | /** | ||
| 13 | * @var string | ||
| 14 | */ | ||
| 15 | protected $username; | ||
| 16 | |||
| 17 | /** | ||
| 18 | * @param string $username The authentication username | ||
| 19 | */ | ||
| 20 | 2 | public function __construct($username) | |
| 24 | |||
| 25 | /** | ||
| 26 | * @override | ||
| 27 | * @inheritDoc | ||
| 28 | */ | ||
| 29 | public function authenticate($conn) | ||
| 33 | } | ||
| 34 |