project structure refactoring

This commit is contained in:
xinatorus
2020-04-27 21:07:31 +02:00
parent d137d08ff4
commit e75de72afd
52 changed files with 0 additions and 31 deletions

View File

@@ -0,0 +1,18 @@
<?php
/**
*
*/
class NetvorkManager
{
function __construct()
{
// code...
}
function validateIp($ip = '0.0.0.0'){
if (!filter_var($ip, FILTER_VALIDATE_IP)){
return false;
}
}
}