Arman Poghosyan

Results 36 comments of Arman Poghosyan

Maybe related to https://github.com/imagemin/jpegtran-bin/issues/83

@stevenscg yep, same issue now, it was resolved before that. I think it was just SourceForge problem as it resolved by itself a couple of days later. And now again...

@kynx I get what you are saying, but this specific error has nothing to do with `declare(strict_types=1)`. No matter you have that declaration or not (on both sides), if you...

@Xerkus I will agree only partially, while this is correct for the `$id` case, what about any other field (property) such as `$name`. The null can be a valid value...

`git://` protocol is deprecated and turned off as March 15, 2022 (https://github.blog/2021-09-01-improving-git-protocol-security-github/). The solution for this problem now until bigcommerce updates it on their side is to add following config:...

I would also like to see any specific reasoning (when, why) to use provider instead of factory class (of course not counting the case with lazy provider).

@samdark Not sure if this proposal belongs here, or it needs separate issue in yii2 repo for 2.1 development. But may I propose to rethink how AssetBundles work and/or we...

@samdark In case of development - yes (when you run docker on dev machine), but in case of staging/production you have (usually) something like: - App container (in case of...

Assets in this case are bundled with web server, as they are also some exact version of your app. Such structure is universally used as it allows to have prebuilt...

@samdark, that's how I'm doing it right now. I have following controller (I proposed to add such command to yii's own AssetController): ```php namespace console\controllers; use frontend\assets\AppAsset; use yii\console\controllers\AssetController as...