| 1 | <?php | ||
| 10 | class SSH2Agent implements SSH2AuthInterface | ||
| 11 | { | ||
| 12 | /** | ||
| 13 | * @var string | ||
| 14 | */ | ||
| 15 | protected $username; | ||
| 16 | |||
| 17 | /** | ||
| 18 | * Constructor | ||
| 19 | * | ||
| 20 | * @param string $username The authentication username | ||
| 21 | */ | ||
| 22 | 2 | public function __construct($username) | |
| 26 | |||
| 27 | /** | ||
| 28 | * @override | ||
| 29 | * @inheritDoc | ||
| 30 | */ | ||
| 31 | public function authenticate($conn) | ||
| 38 | } | ||
| 39 |