Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
| Total | n/a |
0 / 0 |
n/a |
0 / 0 |
CRAP | n/a |
0 / 0 |
|||
| FtpConstants | n/a |
0 / 0 |
n/a |
0 / 0 |
1 | n/a |
0 / 0 |
|||
| __construct | n/a |
0 / 0 |
n/a |
0 / 0 |
1 | |||||
| 1 | <?php |
| 2 | namespace Apie\FtpServer; |
| 3 | |
| 4 | final class FtpConstants |
| 5 | { |
| 6 | /** |
| 7 | * @codeCoverageIgnore |
| 8 | */ |
| 9 | private function __construct() |
| 10 | { |
| 11 | } |
| 12 | |
| 13 | public const USERNAME = 'ftp_username'; |
| 14 | |
| 15 | public const CURRENT_PWD = 'ftp_cwd'; |
| 16 | |
| 17 | public const CURRENT_FOLDER = 'ftp_current_folder'; |
| 18 | |
| 19 | public const PASSWORD = 'ftp_password'; |
| 20 | |
| 21 | public const IP = 'ftp_port_ip'; |
| 22 | |
| 23 | public const PORT = 'ftp_port_port'; |
| 24 | } |