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
How do I not create new row after the function declaration?
Example: Before: public function listaCategoriasCliente($id, $jsonEncode = false) { $dao = new CategoriaClienteDAO($this ->db);
After: public function listaCategoriasCliente($id, $jsonEncode = false) { $dao = new CategoriaClienteDAO($this ->db);
The text was updated successfully, but these errors were encountered:
I want the code like this:
public function listaCategoriasCliente($id, $jsonEncode = false) { $dao = new CategoriaClienteDAO($this ->db);
Sorry, something went wrong.
Please Help!
No branches or pull requests
How do I not create new row after the function declaration?
Example:
Before:
public function listaCategoriasCliente($id, $jsonEncode = false) {
$dao = new CategoriaClienteDAO($this ->db);
After:
public function listaCategoriasCliente($id, $jsonEncode = false)
{
$dao = new CategoriaClienteDAO($this ->db);
The text was updated successfully, but these errors were encountered: