Witold Wasiczko
Witold Wasiczko
#3 @Ocramius has right ;(
Adding string to correct basic token still allow to pass token when using crypt.
Partially fixes #31
In doctrine dbal 3, I had url starts with: `mysql://` and doctrine correctly handle this connection string. But now, even with https://github.com/Roave/psr-container-doctrine/pull/124 I still cannot make a connection (`pdo-mysql` is...
Another bug. I have a class: ``` php namespace RstGroup; use Zend\Cache\Storage\StorageInterface; class AccessTokensService { /** * @var StorageInterface */ protected $cacheStorage; public function __construct(StorageInterface $cacheStorage) { $this->cacheStorage = $cacheStorage;...
When I run rector with this extension rector fails. Running phpstan works fine. Ping @samsonasik ``` [ERROR] Could not process "module/EcommerceApi/tests/integration/ElasticsearchProductsCollectionQueryTest.php" file, due to: "System error: "Unable to resolve service...
I would like to check in specific cases that response is `Laminas\ApiTools\ApiProblem\ApiProblemResponse`, but: ``` Instanceof between Laminas\Http\PhpEnvironment\Response and Laminas\ApiTools\ApiProblem\ApiProblemResponse will always evaluate to false. ```
#### Steps required to reproduce the problem 1. I have already decoded json (from request) and json as php array/object instance 2. I want to create Json object from my...