for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Lagdo\DbAdmin\Driver\Entity;
class UserEntity
{
/**
* @var string
*/
public $name = '';
public $host = '';
public $password = '';
* @var array
public $grants = [];
public $privileges = [];
* The constructor
*
* @param string $name
* @param string $host
public function __construct(string $name = '', string $host = '')
$this->name = $name;
$this->host = $host;
}