texnicii

Results 2 issues of texnicii

Method Imagick::textureImage() has `@return bool — TRUE on success.` in comment. But, Imagick::textureImage() returns new Imagick object in fact and the same indicated in [php.net](https://www.php.net/manual/en/imagick.textureimage.php)

RedisClient::executeCommand() uses Redis::rawCommand() and Redis::rawCommand() may return `false`. Therefore $rawResults may contains `false` and it will throws the error when `false` put to foreach https://github.com/palicao/phpRedisTimeSeries/blob/3b53ffa5e23e7032e2c68a1795100fa4906ce5fa/src/TimeSeries.php#L322 ```php $rawResults = $this->redis->executeCommand(array_merge($params, $this->getAggregationParams($rule)));...