Jan Tvrdík
Jan Tvrdík
https://github.com/dg/bypass-finals/issues?q=infection
I hope that @CZechBoY will do it. I propose the following approach to the problem: After install or update store the current cleaner-ignore configuration somewhere in `vendor` directory. Next time...
> Unfortunately I can't make it work by not using 'N'. The query is part of [contribute datagrid](https://contributte.org/packages/contributte/datagrid/) Can you link the specific query that's causing problem?
You should quote the identifiers when creating the table so that the resulting databases look the same. ```sql CREATE TABLE "table_name" ( "id" INT, "name" VARCHAR(200) NOT NULL ); ```
You can write that as ```php $this->db->select(['id', 'name'])->from('table_name')->as('t') ```
@janedbal Can you elaborate?
@janedbal Production SMTP servers are rarely tested on CI (because CI does not have access to production credentials). Also being able to send mail from CI does not mean you...
> Introducing a "ShuffleMailer" may be the right way. Feel a lot like overengineering. This is three lines of code. Creating new class would just make this a lot harder...
> This clearly doesn't sound like something that should be done in production I disagree, imho production is the only place this can be accurately done from. Yes, you can...
> Because it instantly modifies the input argument We can move the actual shuffle to `send()` + decrease the probability to zero to avoid shuffling for each `send()` call.