Sergei Predvoditelev
Sergei Predvoditelev
Seems, https://github.com/codecov/codecov-action/issues/1539 is related issue.
Perhaps the solution could be use `AbstractSchema::getTableMetadata()` into `Schema::findConstraints()` of each DB specific package?
@darkdef @terabytesoftw What do you think?
> Also, it may return `null` which means "do not add headers". An empty array could be possibly used for the same purpose. Need to consider it. `null` — headers...
You can use so code for quote: ```php $quotedJoinColumn = $quoter->quoteColumnName($tableName . '.name'); ``` `quoteColumnName()` supports column names with table. And simpler way will be so: ```php use Yiisoft\Db\Connection\ConnectionInterface; use...
In current implementation to `$on` bind params and used result string. And this OK for me, `$on` is not so often be a column name. 3th way from @Tigrov looks...
There are two way to make same thing: 1) Add own failure handler to `Authentication` middleware. 2) Add code to `AuthenticationMethodInterface::challenge()`. May be remove `AuthenticationMethodInterface::challenge()`?
Currently, the entire `CurrentUser` logic is hardcoded to use sessions. This represents short-term logic (current user session). `CookieLoginMiddleware`, on the other hand, handles long-term logic. I believe these are different...
> In other words, I think primarily use for absolute expire feature is to limit 'remember me' cookie longevity. No. "Remember me" is other thing, it implements in `CookieLoginMiddleware`.
New repo is good idea