Thomas

Results 22 comments of Thomas

@oerdnj Big thanks for providing PHP8 packages, tests on stretch and buster are looking good so far! For those who want to compile pecl extensions manually before the packages are...

Looks good, thank you! Would be great to get apcu and pcov.

Here is the change I used to get the cli version working: ``` +++ b/gpt4all-bindings/cli/app.py @@ -35,7 +35,7 @@ Type /help for special commands. def _cli_override_response_callback(token_id, response): resp = response.decode("utf-8")...

GitLab pipelines creates a new directory on every run, e.g. /builds/6637522964/phpstan.neon, /builds/6637426831/phpstan.neon, etc. That way even valid caches seems to be treated as invalid. I'm currently using bind mounts in...

Maybe offer to write Test classes without "extends TestCase". Example: ```

no error (but table tasks_invalid does not exist): ``` $pdo = new \PDO('mysql:host=mysql;dbname=tasks;port=3306;charset=utf8mb4;', 'root', 'root'); $query = 'SELECT id, title, duedate, completed, last_updated_by FROM tasks_invalid WHERE customer_id = ? AND...

Another example: no error (but table task_invalid does not exist): ``` $pdo = new \PDO('mysql:host=mysql;dbname=tasks;port=3306;charset=utf8mb4;', 'root', 'root'); $ids = implode(',', array_map(intval(...), [1,2,3])); $query = sprintf('SELECT id, title, duedate, completed, last_updated_by...

here is the repository and the pipeline: https://github.com/thbley/phpstan_dba https://github.com/thbley/phpstan_dba/actions/runs/5081767755/jobs/9130588776