We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Here is an example: Class DB.
Why are you using this approach?
The text was updated successfully, but these errors were encountered:
You may consider this usage.
class DB extends Medoo { public function __construct( string $type, string $name, string $server, string $username, string $password, string $prefix, $charset = "utf8" ) { try { parent::__construct([ 'database_type' => $type, 'database_name' => $name, 'server' => $server, 'username' => $username, 'password' => $password, 'prefix' => $prefix, 'charset' => $charset, ]); } catch (\Exception $e) { throw \PerSeo\DB\Exception\InvalidArgumentException::fromPrevious($e); } } }
Sorry, something went wrong.
Class changed, using direct Medoo Exception.
No branches or pull requests
Here is an example: Class DB.
Why are you using this approach?
The text was updated successfully, but these errors were encountered: